Skip to content

Commit bbaec58

Browse files
committed
Add Playwright default test
1 parent 6a3d45a commit bbaec58

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Test/Playwright/default.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('basic test', async ({ page }) => {
4+
await page.goto('/');
5+
await expect(page).toHaveTitle(/Home page/);
6+
});

0 commit comments

Comments
 (0)