Skip to content

Commit

Permalink
Update e2e example test
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelpuchta committed Nov 15, 2024
1 parent 17db8c5 commit 10910d8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/e2e/example.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ test.describe("basic example test", () => {
await expect(page).toHaveTitle("Kommunikationsplattform");
});

test("shows hello message", async ({ page }) => {
test("shows Kommunikationsplattform text", async ({ page }) => {
await page.goto("/");
await expect(
page.locator("text=Hello Kommunikationsplattform!"),
).toBeVisible();
await expect(page.locator("text=Kommunikationsplattform")).toBeVisible();
});
});

0 comments on commit 10910d8

Please sign in to comment.