30 lines
770 B
TypeScript
30 lines
770 B
TypeScript
|
|
import { defineConfig, devices } from "@playwright/test";
|
||
|
|
|
||
|
|
const baseURL = process.env.PLAYWRIGHT_BASE_URL ?? "http://localhost:3101";
|
||
|
|
const apiURL = process.env.PLAYWRIGHT_API_URL ?? "http://localhost:5080";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: "./e2e",
|
||
|
|
fullyParallel: true,
|
||
|
|
forbidOnly: !!process.env.CI,
|
||
|
|
retries: process.env.CI ? 1 : 0,
|
||
|
|
workers: process.env.CI ? 1 : undefined,
|
||
|
|
reporter: "list",
|
||
|
|
use: {
|
||
|
|
baseURL,
|
||
|
|
trace: "on-first-retry",
|
||
|
|
},
|
||
|
|
projects: [{ name: "chromium", use: { ...devices["Desktop Chrome"] } }],
|
||
|
|
webServer: process.env.CI
|
||
|
|
? undefined
|
||
|
|
: {
|
||
|
|
command: "npm run dev",
|
||
|
|
url: baseURL,
|
||
|
|
reuseExistingServer: true,
|
||
|
|
timeout: 120_000,
|
||
|
|
},
|
||
|
|
globalSetup: undefined,
|
||
|
|
});
|
||
|
|
|
||
|
|
export { apiURL };
|