-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcypress.json
38 lines (38 loc) · 1.22 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
37
38
{
"testFiles": "**/*.spec.js",
"chromeWebSecurity": false,
"defaultCommandTimeout": 20000,
"integrationFolder": "cypress/tests",
"ignoreTestFiles": [""],
"fixturesFolder": "cypress/fixtures",
"pluginsFile": "cypress/plugins/index.js",
"pageLoadTimeout": 90000,
"numTestsKeptInMemory": 10,
"screenshotsFolder" : "results/screenshots",
"supportFile": "cypress/support/index.js",
"videosFolder": "results/videos",
"videoUploadOnPasses": false,
"watchForFileChanges": true,
"env": {
"OC_IDP": "kube:admin"
},
"reporter": "cypress-multi-reporters",
"reporterOptions": {
"reporterEnabled": "mochawesome, mocha-junit-reporter",
"mochawesomeReporterOptions": {
"reportDir": "results/json",
"reportFilename": "mochawesome-report.json",
"overwrite": false,
"html": false,
"json": true
},
"mochaJunitReporterReporterOptions": {
"testCaseSwitchClassnameAndName": true,
"mochaFile": "results/cypress-[hash].xml"
}
},
"retries": 1,
"viewportHeight": 1050,
"viewportWidth": 1680,
"baseUrl": "http://console-openshift-console.apps.ocp-edge-cluster-0.qe.lab.redhat.com"
}