Files
wenzi/frontend/playwright.config.ts

32 lines
605 B
TypeScript
Raw Normal View History

import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: './e2e/tests',
testMatch: '*.spec.ts',
fullyParallel: false,
workers: 1,
retries: 0,
reporter: [['list']],
use: {
baseURL: 'http://localhost:5173',
trace: 'off',
screenshot: 'off',
video: 'off',
actionTimeout: 15000,
navigationTimeout: 30000,
},
projects: [
{
name: 'chromium',
use: {
...devices['Desktop Chrome'],
launchOptions: {
args: ['--no-sandbox', '--disable-setuid-sandbox']
}
},
},
],
});