You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
310 B
TypeScript
16 lines
310 B
TypeScript
3 years ago
|
const config = {
|
||
|
timeout: 300000,
|
||
|
globalTimeout: 6000000,
|
||
|
reporter: 'list',
|
||
|
testDir: './ts/test/automation',
|
||
|
testIgnore: '*.js',
|
||
|
outputDir: './ts/test/automation/test-results',
|
||
|
use: {
|
||
|
video: 'retain-on-failure',
|
||
|
trace: 'retain-on-failure',
|
||
|
},
|
||
|
workers: 1,
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|