-
Notifications
You must be signed in to change notification settings - Fork 5
/
cypress.json
34 lines (33 loc) · 1004 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
{
"fileServerFolder": ".",
"fixturesFolder": "./src/fixtures",
"integrationFolder": "./src/integration",
"modifyObstructiveCode": false,
"pluginsFile": "./src/plugins/index",
"supportFile": "./src/support/index.js",
"videosFolder": "../../dist/cypress/apps/e2etest/videos",
"screenshotsFolder": "../../dist/cypress/apps/e2etest/screenshots",
"chromeWebSecurity": false,
"baseUrl":"http://the-internet.herokuapp.com/",
"headless": true,
"env": {
"loginRoute": "/login",
"username": "MICSES",
"Database": "MICSES"
},
"reporter": "cypress-multi-reporters",
"reporterOptions": {
"reporterEnabled": "mochawesome",
"mochawesomeReporterOptions": {
"reportDir": "../../dist/cypress/apps/e2etest/reports",
"quiet": true,
"overwrite": false,
"html": false,
"json": true
}
},
"video": true,
"viewportWidth": 1440,
"viewportHeight": 900,
"record": true
}