Moved files

This commit is contained in:
Patrick Alvin Alcala 2025-08-26 18:01:16 +08:00
parent ff96ee6ace
commit b559b0b2e4
4 changed files with 7 additions and 0 deletions

View file

@ -12,6 +12,13 @@ test('page loaded correctly', async ({ page }) => {
expect(keywordsMeta).toBe('This is just a template.') expect(keywordsMeta).toBe('This is just a template.')
}) })
test('background loaded correctly', async ({ page }) => {
await page.goto('http://localhost:4321')
const headerTitle = await page.textContent('h1')
expect(headerTitle).toBe('Fast WebApp Template')
})
test('header title is visible and contains correct text', async ({ page }) => { test('header title is visible and contains correct text', async ({ page }) => {
await page.goto('http://localhost:4321') await page.goto('http://localhost:4321')