-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.cypress.json
45 lines (45 loc) · 1.16 KB
/
example.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
{
"defaultCommandTimeout": 20000,
"video": false,
"screenshotOnRunFailure": false,
"baseUrl": "http://test.zesty.io:3000",
"env": {
"user": {
"email": "[email protected]",
"password": "password"
},
"cypress-plugin-snapshots": {
"autoCleanUp": false,
"autopassNewSnapshots": true,
"diffLines": 3,
"excludeFields": [],
"ignoreExtraArrayItems": false,
"ignoreExtraFields": false,
"normalizeJson": true,
"prettier": true,
"imageConfig": {
"createDiffImage": true,
"resizeDevicePixelRatio": true,
"threshold": 0.01,
"thresholdType": "percent"
},
"screenshotConfig": {
"blackout": [],
"capture": "fullPage",
"clip": null,
"disableTimersAndAnimations": true,
"log": false,
"scale": false,
"timeout": 30000
},
"serverEnabled": true,
"serverHost": "localhost",
"serverPort": 2121,
"updateSnapshots": false,
"backgroundBlend": "difference"
}
},
"ignoreTestFiles": ["**/__snapshots__/*", "**/__image_snapshots__/*"],
"viewportWidth": 1280,
"viewportHeight": 720
}