template-web-astro/e2e/example.spec.ts
Florian Bouillon 3e91597dca feat: multiple changes
Signed-off-by: Avior <git@avior.me>
2024-09-09 14:27:46 +02:00

9 lines
201 B
TypeScript

import { expect, test } from '@playwright/test'
test('has title', async ({ page }) => {
await page.goto('/')
// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/Dzeio/)
})