Skip to content

Commit 956ef66

Browse files
committed
added example playwright test
1 parent 38ac7c3 commit 956ef66

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

playwright/example.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { test, expect } from "@playwright/test";
2+
3+
test("Example", async ({ page }) => {
4+
await page.goto("");
5+
expect(await page.getByRole("main").getByRole("link").all()).toHaveLength(22);
6+
});

0 commit comments

Comments
 (0)