super-todo-app-server/tests/example.spec.ts
Nicolas HOARAU 2cdf12d773
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 16m3s
first commit
2026-01-29 23:58:45 +04:00

7 lines
207 B
TypeScript

import { expect, test } from "@nuxt/test-utils/playwright";
test("example e2e test", async ({ page, goto }) => {
await goto("/", { waitUntil: "hydration" });
await expect(page).toHaveTitle(/Nuxt/);
});