32 lines
760 B
TypeScript
32 lines
760 B
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
const port = 4173;
|
|
const baseURL = `https://127.0.0.1:${port}`;
|
|
const isCi = Boolean(process.env.CI);
|
|
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
fullyParallel: true,
|
|
forbidOnly: isCi,
|
|
retries: isCi ? 2 : 0,
|
|
workers: isCi ? 1 : undefined,
|
|
reporter: isCi ? [['list'], ['html', { open: 'never' }]] : 'list',
|
|
use: {
|
|
baseURL,
|
|
ignoreHTTPSErrors: true,
|
|
trace: 'on-first-retry',
|
|
},
|
|
webServer: {
|
|
command: `npm run preview -- --host 127.0.0.1 --port ${port}`,
|
|
ignoreHTTPSErrors: true,
|
|
reuseExistingServer: false,
|
|
timeout: 120_000,
|
|
url: baseURL,
|
|
},
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...devices['Desktop Chrome'] },
|
|
},
|
|
],
|
|
});
|