-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcypress.json
47 lines (47 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
{
"baseUrl": "https://shore-qa.otaliodev.com",
"defaultCommandTimout": 15000,
"requestTimeout": 5000,
"responseTimeout": 20000,
"blockHosts": [
"*google.com",
"www.google-analytics.com",
"*.google-analytics.com",
"*google-analytics.com"
],
"env": {
"projectId": "Otalio",
"EMAIL": "[email protected]",
"PASSWORD": "88888"
},
"fixturesFolder": "cypress/fixtures",
"integrationFolder": "cypress/integration",
"pluginsFile": "cypress/plugins/index.js",
"screenshotsFolder": "cypress/screenshots",
"supportFile": "cypress/support/index.js",
"testFiles": "**/*.{feature,features}",
"ignoreTestFiles": "*.ts",
"videosFolder": "cypress/videos",
"video": true,
"trashAssetsBeforeRuns": true,
"viewportHeight": 660,
"viewportWidth": 1000,
"waitForAnimations": true,
"onBeforeScreenshot": null,
"screenshotOnRunFailure": true,
"onAfterScreenshot": null,
"videoUploadOnPasses": false,
"capture": "runner",
"chromeWebSecurity": false,
"reporter": "cypress-multi-reporters",
"reporterOptions": {
"reporterEnabled": "mochawesome",
"mochawesomeReporterOptions": {
"reportDir": "./reports/mocha-json",
"quite": true,
"overwrite": false,
"html": false,
"json": true
}
}
}