pulsar/playwright.config.ts

15 lines
206 B
TypeScript
Raw Permalink Normal View History

2022-11-19 07:04:18 +03:00
let config = {
2022-08-19 07:04:27 +03:00
testDir: 'integration',
2022-08-19 07:03:55 +03:00
timeout: 60000,
expect: {
timeout: 25000,
toMatchSnapshot: {threshold: 0.2},
}
}
2022-11-19 07:04:18 +03:00
if(process.env.CI) {
config.retries = 3
}
module.exports = config