super-todo-app-server/apps/web/playwright.config.ts
= e2114f5b7f
Some checks failed
ci / ci (push) Failing after 53s
chore: migration vers monorepo
2026-02-23 21:10:28 +04:00

25 lines
615 B
TypeScript

import { fileURLToPath } from "node:url";
import { defineConfig, devices } from "@playwright/test";
import type { ConfigOptions } from "@nuxt/test-utils/playwright";
export default defineConfig<ConfigOptions>({
testDir: "./tests",
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: "html",
use: {
trace: "on-first-retry",
nuxt: {
rootDir: fileURLToPath(new URL(".", import.meta.url)),
},
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
],
});