Files
cypress/system-tests/projects/migration/cypress.json
T
Cesar bdc7c01d62 feat: convert cypress.json to cypress.config.js (#19748)
Co-authored-by: Barthélémy Ledoux <bart@cypress.io>
Co-authored-by: ElevateBart <ledouxb@gmail.com>
2022-01-20 15:43:09 -06:00

18 lines
436 B
JSON

{
"$schema": "https://on.cypress.io/cypress.schema.json",
"baseUrl": "http://localhost:3000",
"retries": 2,
"defaultCommandTimeout": 5000,
"fixturesFolder": false,
"componentFolder": "src",
"testFiles": "**/*.spec.{tsx,js}",
"pluginsFile": "cypress/plugins/index.ts",
"e2e": {
"defaultCommandTimeout": 10000,
"slowTestThreshold": 5000
},
"component": {
"slowTestThreshold": 5000,
"retries": 1
}
}