forked from cypress-io/cypress-realworld-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cypress.json
35 lines (35 loc) · 868 Bytes
/
cypress.json
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
34
35
{
"baseUrl": "http://localhost:3000",
"projectId": "7s5okt",
"integrationFolder": "cypress/tests",
"viewportHeight": 1000,
"viewportWidth": 1280,
"retries": {
"runMode": 2,
"openMode": 1
},
"env": {
"apiUrl": "http://localhost:3001",
"mobileViewportWidthBreakpoint": 414,
"coverage": false,
"codeCoverage": {
"url": "http://localhost:3001/__coverage__"
}
},
"reporter": "cypress-multi-reporters",
"reporterOptions": {
"reporterEnabled": "mochawesome",
"mochawesomeReporterOptions": {
"reportDir": "cypress/reports/mocha",
"quite": true,
"overwrite": false,
"html": false,
"json": true
}
},
"screenshotOnRunFailure": true,
"screenshotsFolder": "cypress/reports/mochareports/assets",
"video": false,
"testFiles": "**/*.spec.ts",
"experimentalStudio": true
}