31 lines
742 B
TypeScript
31 lines
742 B
TypeScript
/// <reference types="node" />
|
|
|
|
import { defineConfig } from '@playwright/test';
|
|
import { existsSync } from 'node:fs';
|
|
|
|
const chromiumExecutable =
|
|
process.env.PLAYWRIGHT_CHROMIUM_EXECUTABLE_PATH ??
|
|
(existsSync('/usr/bin/chromium') ? '/usr/bin/chromium' : undefined);
|
|
|
|
export default defineConfig({
|
|
testDir: './tests/e2e',
|
|
fullyParallel: false,
|
|
retries: 0,
|
|
reporter: 'line',
|
|
use: {
|
|
baseURL: 'http://127.0.0.1:4174',
|
|
trace: 'retain-on-failure',
|
|
video: 'retain-on-failure',
|
|
launchOptions: {
|
|
executablePath: chromiumExecutable,
|
|
args: ['--no-sandbox']
|
|
}
|
|
},
|
|
webServer: {
|
|
command: 'pnpm dev --host 127.0.0.1 --port 4174 --strictPort',
|
|
url: 'http://127.0.0.1:4174',
|
|
reuseExistingServer: true,
|
|
timeout: 120_000
|
|
}
|
|
});
|