| 12345678910111213141516171819202122232425262728293031 |
- import { defineConfig } from "@playwright/test"
- const isCI = !!process?.env?.CI
- const isWindow = process?.platform?.startsWith("win")
- export default defineConfig({
- workers: 1,
- retries: 1,
- forbidOnly: isCI,
- testDir: "src/test/e2e",
- testMatch: /.*\.test\.ts/,
- timeout: isCI || isWindow ? 40000 : 20000,
- expect: {
- timeout: isCI || isWindow ? 5000 : 2000,
- },
- fullyParallel: true,
- reporter: isCI ? [["github"], ["list"]] : [["list"]],
- use: {
- video: "retain-on-failure",
- },
- projects: [
- {
- name: "setup test environment",
- testMatch: /global\.setup\.ts/,
- },
- {
- name: "e2e tests",
- dependencies: ["setup test environment"],
- },
- ],
- })
|