27 lines
660 B
JavaScript
27 lines
660 B
JavaScript
import { defineConfig, devices } from "playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests/ui",
|
|
timeout: 30_000,
|
|
expect: {
|
|
timeout: 5_000,
|
|
},
|
|
fullyParallel: true,
|
|
forbidOnly: Boolean(process.env.CI),
|
|
retries: process.env.CI ? 2 : 0,
|
|
reporter: [["list"], ["html", { open: "never" }]],
|
|
use: {
|
|
baseURL: "http://127.0.0.1:3404",
|
|
trace: "retain-on-failure",
|
|
screenshot: "only-on-failure",
|
|
video: "retain-on-failure",
|
|
...devices["Desktop Chrome"],
|
|
},
|
|
webServer: {
|
|
command: "node src/server.js",
|
|
url: "http://127.0.0.1:3404/api/status",
|
|
reuseExistingServer: true,
|
|
timeout: 30_000,
|
|
},
|
|
});
|