Files
RadioPlayerWeb/playwright.config.js
T
2026-07-03 21:05:07 +02:00

29 lines
601 B
JavaScript

import { defineConfig, devices } from '@playwright/test';
const HOST = '127.0.0.1';
const PORT = 4174;
const BASE_URL = `http://${HOST}:${PORT}`;
export default defineConfig({
testDir: './tests/e2e',
retries: 0,
use: {
baseURL: BASE_URL,
trace: 'on-first-retry',
},
webServer: {
command: `npm run build && npm run preview -- --host ${HOST} --port ${PORT} --strictPort`,
url: BASE_URL,
reuseExistingServer: !process.env.CI,
timeout: 120000,
},
projects: [
{
name: 'chromium',
use: {
...devices['Desktop Chrome'],
},
},
],
});