pulsar/playwright.config.ts
Maurício Szabo 151eeb1619 Packages test
2022-11-19 01:04:18 -03:00

15 lines
206 B
TypeScript

let config = {
testDir: 'integration',
timeout: 60000,
expect: {
timeout: 25000,
toMatchSnapshot: {threshold: 0.2},
}
}
if(process.env.CI) {
config.retries = 3
}
module.exports = config