-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcypress.json
51 lines (49 loc) · 1.33 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
48
49
50
51
{
"baseUrl": null,
"env": {
"devUrl": "https://opensource-demo.orangehrmlive.com/"
},
"ignoreTestFiles": "/pageobjects/*.js",
"numTestsKeptInMemory": 1,
"port": null,
"watchForFileChanges": false,
"defaultCommandTimeout": 4000,
"execTimeout": 60000,
"taskTimeout": 60000,
"pageLoadTimeout": 60000,
"requestTimeout": 5000,
"responseTimeout": 30000,
"fileServerFolder": "",
"fixturesFolder": "cypress/fixtures",
"integrationFolder": "cypress/integration/tests",
"screenshotsFolder": "cypress/screenshots",
"trashAssetsBeforeRuns": true,
"videoCompression": 32,
"videoUploadOnPasses": true,
"video": true,
"videosFolder": "cypress/videos",
"chromeWebSecurity": true,
"userAgent": null,
"blockHosts": null,
"modifyObstructiveCode": true,
"viewportHeight": 800,
"viewportWidth": 1400,
"animationDistanceThreshold": 5,
"waitForAnimations": true,
"nodeVersion": "default",
"pluginsFile": "cypress/plugins",
"hosts": null,
"projectId": null,
"testFiles": "**/*.*",
"reporter": "cypress-multi-reporters",
"reporterOptions": {
"reporterEnabled": "mochawesome",
"mochawesomeReporterOptions": {
"reportDir": "cypress/reports/mocha",
"quite": true,
"overwrite": false,
"html": false,
"json": true
}
}
}