movie-night-web/tests/example.spec.ts

7 lines
203 B
TypeScript
Raw Normal View History

2026-02-16 19:12:00 -06:00
import { expect, test } from '@nuxt/test-utils/playwright'
test('example e2e test', async ({ page, goto }) => {
await goto('/', { waitUntil: 'hydration' })
await expect(page).toHaveTitle(/Nuxt/)
})