cryptgeon/playwright.config.ts

29 lines
681 B
TypeScript
Raw Normal View History

import { devices, type PlaywrightTestConfig } from '@playwright/test'
const config: PlaywrightTestConfig = {
use: {
video: 'retain-on-failure',
2024-08-23 14:27:17 +02:00
baseURL: 'http://localhost:3000',
2024-08-23 11:02:30 +02:00
actionTimeout: 10_000,
},
outputDir: './test-results',
testDir: './test',
2024-08-25 22:20:46 +02:00
timeout: 30_000,
2024-08-23 11:02:30 +02:00
fullyParallel: true,
webServer: {
2022-11-14 15:47:12 +01:00
command: 'docker compose -f docker-compose.dev.yaml up',
2024-08-23 14:27:17 +02:00
port: 3000,
reuseExistingServer: true,
},
projects: [
{ name: 'chrome', use: { ...devices['Desktop Chrome'] } },
{ name: 'firefox', use: { ...devices['Desktop Firefox'] } },
{ name: 'safari', use: { ...devices['Desktop Safari'] } },
],
}
export default config