2021-12-17 12:05:14 +00:00
|
|
|
/* eslint-disable filenames/match-exported */
|
|
|
|
import { PlaywrightTestConfig } from '@playwright/test';
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
|
|
webServer: {
|
|
|
|
command: 'npm run serve',
|
|
|
|
port: 4010,
|
|
|
|
timeout: 120 * 1000,
|
|
|
|
reuseExistingServer: !process.env.CI,
|
|
|
|
},
|
2022-02-10 13:48:32 +00:00
|
|
|
use: {
|
|
|
|
trace: {
|
|
|
|
mode: 'retain-on-failure',
|
|
|
|
screenshots: true,
|
|
|
|
snapshots: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
reporter: process.env.CI ? 'github' : 'list',
|
2021-12-17 12:05:14 +00:00
|
|
|
timeout: process.env.CI ? 60 * 1000 : 20 * 1000,
|
|
|
|
forbidOnly: !!process.env.CI,
|
|
|
|
outputDir: 'screenshots',
|
|
|
|
testDir: 'tests',
|
|
|
|
};
|
|
|
|
export default config;
|