feat: initial commit

This commit is contained in:
2025-11-16 18:10:34 +01:00
commit 461b659667
200 changed files with 27407 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { test, expect, Page } from '@playwright/test'
test.describe('Frontend', () => {
let page: Page
test.beforeAll(async ({ browser }, testInfo) => {
const context = await browser.newContext()
page = await context.newPage()
})
test('can go on homepage', async ({ page }) => {
await page.goto('http://localhost:3000')
await expect(page).toHaveTitle(/Payload Website Template/)
const heading = page.locator('h1').first()
await expect(heading).toHaveText('Payload Website Template')
})
})