template-web-astro/e2e/example.spec.ts
Florian Bouillon e26b4eb4a5
Some checks failed
Build, check & Test / run (push) Failing after 42s
feat: Upgrade template based on projects made with it
Signed-off-by: Florian Bouillon <f.bouillon@aptatio.com>
2023-10-09 11:47:11 +02:00

9 lines
203 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/);
})