-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.json
48 lines (48 loc) · 1.26 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
{
"baseUrl": "",
"video": false,
"defaultCommandTimeout": 200000,
"requestTimeout": 200000,
"screenshotsFolder": "cypress/reports/screenshots",
"screenshotOnRunFailure": true,
"trashAssetsBeforeRuns": false,
"testFiles": "**/*.spec.js",
"supportFile": "cypress/support/index.js",
"chromeWebSecurity": false,
"viewportHeight": 700,
"viewportWidth": 1382,
"watchForFileChanges": false,
"experimentalSessionSupport": true,
"env": {
"cypress-plugin-snapshots": {
"autoCleanUp": true,
"autopassNewSnapshots": false,
"diffLines": 3,
"excludeFields": [],
"ignoreExtraArrayItems": false,
"ignoreExtraFields": false,
"normalizeJson": true,
"prettier": true,
"imageConfig": {
"createDiffImage": true,
"resizeDevicePixelRatio": false,
"threshold": 1,
"thresholdType": "percent"
},
"screenshotConfig": {
"blackout": [],
"capture": "viewport",
"clip": null,
"disableTimersAndAnimations": true,
"log": true,
"scale": false,
"timeout": 30000
},
"serverEnabled": true,
"serverHost": "localhost",
"serverPort": 2121,
"updateSnapshots": false,
"backgroundBlend": "difference"
}
}
}