Create project

This commit is contained in:
2024-08-13 20:31:33 +09:00
commit c8f7b81816
18 changed files with 3931 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';
test('home page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
});