You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SoulSync/webui/playwright.config.ts

14 lines
312 B

import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './tests',
timeout: 30_000,
use: {
launchOptions: {
executablePath: '/usr/bin/chromium',
},
baseURL: process.env.PLAYWRIGHT_BASE_URL || 'http://127.0.0.1:8008',
trace: 'on-first-retry',
},
});