playwright.config.ts 206 B

1234567891011121314
  1. let config = {
  2. testDir: 'integration',
  3. timeout: 60000,
  4. expect: {
  5. timeout: 25000,
  6. toMatchSnapshot: {threshold: 0.2},
  7. }
  8. }
  9. if(process.env.CI) {
  10. config.retries = 3
  11. }
  12. module.exports = config