-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcypress.json
More file actions
33 lines (33 loc) · 883 Bytes
/
cypress.json
File metadata and controls
33 lines (33 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"integrationFolder": "cypress/integration",
"testFiles": "**/*.spec.js",
"ignoreTestFiles": ["**/__monkeys__/*", "**/smoke.js"],
"fixturesFolder": "cypress/fixtures",
"pluginsFile": "cypress/plugins/index.js",
"supportFile": "cypress/support/index.js",
"downloadsFolder": "cypress/reports/downloads",
"screenshotsFolder": "cypress/reports/screenshots",
"videosFolder": "cypress/reports/videos",
"chromeWebSecurity": false,
"reporter": "mochawesome",
"reporterOptions": {
"reportDir": "cypress/reports/mochawsome/json",
"overwrite": false,
"html": false,
"json": true,
"timestamp": "mmddyyyy_HHMMss"
},
"viewportWidth": 1280,
"viewportHeight": 720,
"retries": {
"runMode": 1,
"openMode": 0
},
"lighthouse": {
"performance": 80,
"accessibility": 85,
"best-practices": 85,
"seo": 80,
"pwa": 85
}
}