35 lines
981 B
TypeScript
35 lines
981 B
TypeScript
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
const currentDir = path.dirname(fileURLToPath(import.meta.url));
|
|
const repoRoot = path.resolve(currentDir, '../..');
|
|
const frontendPort = 7131;
|
|
const frontendUrl = `http://127.0.0.1:${frontendPort}`;
|
|
|
|
export default defineConfig({
|
|
testDir: './tests/ui',
|
|
fullyParallel: false,
|
|
forbidOnly: Boolean(process.env.CI),
|
|
retries: process.env.CI ? 2 : 0,
|
|
workers: 1,
|
|
reporter: process.env.CI ? [['list'], ['html', { open: 'never' }]] : [['list']],
|
|
use: {
|
|
baseURL: frontendUrl,
|
|
trace: 'retain-on-failure',
|
|
},
|
|
webServer: {
|
|
command: `npm run dev -- --host 127.0.0.1 --port ${frontendPort}`,
|
|
cwd: path.resolve(repoRoot, 'frontend'),
|
|
url: frontendUrl,
|
|
reuseExistingServer: !process.env.CI,
|
|
timeout: 120_000,
|
|
},
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...devices['Desktop Chrome'] },
|
|
},
|
|
],
|
|
});
|