Files

35 lines
592 B
TypeScript
Raw Permalink Normal View History

2024-07-03 02:30:27 -07:00
import { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
testDir: '.',
timeout: 10000,
projects: [
{
name: 'Chromium',
2024-07-03 02:30:27 -07:00
use: {
browserName: 'chromium'
2024-07-03 02:30:27 -07:00
}
},
{
2024-07-03 05:15:41 -07:00
name: 'FirefoxStable',
2024-07-03 02:30:27 -07:00
use: {
browserName: 'firefox'
}
},
{
name: 'WebKit',
use: {
browserName: 'webkit'
}
}
],
reporter: 'list',
webServer: {
2024-07-05 08:46:15 -07:00
command: 'npm run start',
2024-07-03 02:30:27 -07:00
port: 3000,
timeout: 120000,
reuseExistingServer: !process.env.CI
}
};
export default config;