mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
15 lines
206 B
TypeScript
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
|