mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-14 13:36:36 +00:00
30 lines
635 B
TypeScript
30 lines
635 B
TypeScript
import { defineConfig } from "playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./e2e",
|
|
outputDir: "./e2e-results",
|
|
fullyParallel: true,
|
|
timeout: 60_000,
|
|
retries: 0,
|
|
reporter: [["list"], ["html", { open: "never" }]],
|
|
use: {
|
|
baseURL: "http://127.0.0.1:4173",
|
|
trace: "on-first-retry",
|
|
},
|
|
projects: [
|
|
{
|
|
name: "chromium",
|
|
use: {
|
|
browserName: "chromium",
|
|
viewport: { width: 1440, height: 900 },
|
|
},
|
|
},
|
|
],
|
|
webServer: {
|
|
command: "pnpm build && node scripts/serve-static.mjs --port 4173",
|
|
url: "http://127.0.0.1:4173/preview",
|
|
reuseExistingServer: !process.env.CI,
|
|
timeout: 180_000,
|
|
},
|
|
});
|