Files
workinf_Blender_Wasm/web/playwright.release.config.ts
2026-08-12 04:47:48 -04:00

29 lines
957 B
TypeScript

import { defineConfig, devices } from "@playwright/test";
const testPort = Number.parseInt(process.env.WEB_TEST_PORT ?? "5174", 10) || 5174;
const testOrigin = `http://127.0.0.1:${testPort}`;
export default defineConfig({
testDir: "tests/e2e",
testMatch: "cross-browser.spec.ts",
timeout: 45_000,
expect: { timeout: 15_000 },
fullyParallel: false,
reporter: [["list"]],
projects: [
{ name: "chromium", use: { ...devices["Desktop Chrome"], launchOptions: { executablePath: process.env.CHROME_PATH ?? "/home/mes123456/.local/bin/google-chrome", args: ["--no-sandbox", "--use-gl=swiftshader", "--enable-unsafe-swiftshader"] } } },
],
use: {
baseURL: testOrigin,
headless: true,
screenshot: "only-on-failure",
trace: "retain-on-failure",
},
webServer: {
command: `npm run dev -- --host 127.0.0.1 --port ${testPort} --strictPort`,
url: testOrigin,
reuseExistingServer: false,
timeout: 30_000,
},
});