super-todo-app-server/apps/web/tests/example.spec.ts
= e2114f5b7f
Some checks failed
ci / ci (push) Failing after 53s
chore: migration vers monorepo
2026-02-23 21:10:28 +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/);
});