forked from stolostron/grc-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.json
36 lines (36 loc) · 1.11 KB
/
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
36
{
"retries": {
"runMode": 0,
"openMode": 0
},
"baseUrl": "https://localhost:3000",
"chromeWebSecurity": false,
"defaultCommandTimeout": 60000,
"integrationFolder": "tests/cypress/tests",
"ignoreTestFiles": "**/ignoredTestFiles/*.spec.js",
"fixturesFolder": "tests/cypress/fixtures",
"pluginsFile": "tests/cypress/plugins/index.js",
"screenshotsFolder" : "test-output/cypress/screenshots",
"supportFile": "tests/cypress/support/index.js",
"videosFolder": "test-output/cypress/videos",
"videoUploadOnPasses": false,
"videoCompression": false,
"watchForFileChanges": true,
"nodeVersion": "system",
"reporter": "cypress-multi-reporters",
"reporterOptions": {
"reporterEnabled": "mochawesome, mocha-junit-reporter",
"mochawesomeReporterOptions": {
"reportDir": "test-output/cypress/json",
"reportFilename": "mochawesome-report.json",
"overwrite": false,
"html": false,
"json": true
},
"mochaJunitReporterReporterOptions": {
"mochaFile": "test-output/cypress/cypress-[hash].xml"
}
},
"viewportHeight": 1050,
"viewportWidth": 1680
}