-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackstop.json
126 lines (126 loc) · 3.12 KB
/
backstop.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"id": "backstop_default",
"viewports": [
{
"label": "desktop",
"width": 1920,
"height": 1080
},
{
"label": "tablet",
"width": 1024,
"height": 768
},
{
"label": "phone",
"width": 768,
"height": 1024
},
{
"label": "small-phone",
"width": 320,
"height": 480
}
],
"onBeforeScript": "puppet/onBefore.js",
"onReadyScript": "puppet/onReady.js",
"scenarios": [
{
"label": "Homepage",
"url": "http://localhost:18000/",
"referenceUrl": "",
"postInteractionWait": 2000,
"misMatchThreshold" : 0.1
},
{
"label": "Homepage [header menu]",
"url": "http://localhost:18000/",
"referenceUrl": "",
"postInteractionWait": 2000,
"misMatchThreshold" : 0.1
},
{
"label": "Course about page",
"url": "http://localhost:18000/courses/course-v1:edX+DemoX+Demo_Course/about",
"referenceUrl": "",
"misMatchThreshold" : 0.1
},
{
"label": "Courses page",
"url": "http://localhost:18000/courses/",
"referenceUrl": "",
"postInteractionWait": 3000,
"misMatchThreshold" : 0.1
},
{
"label": "Courses page [search]",
"url": "http://localhost:18000/courses?search_query=demo",
"referenceUrl": "",
"postInteractionWait": 3000,
"misMatchThreshold" : 0.1
},
{
"label": "Courses page [facet options]",
"url": "http://localhost:18000/courses",
"referenceUrl": "",
"postInteractionWait": 2000,
"misMatchThreshold" : 0.1
},
{
"label": "Login",
"url": "http://localhost:18000/login",
"referenceUrl": "",
"postInteractionWait": 2000,
"misMatchThreshold" : 0.1
},
{
"label": "Register",
"url": "http://localhost:18000/register",
"referenceUrl": "",
"postInteractionWait": 2000,
"misMatchThreshold" : 0.1
},
{
"label": "Dashboard",
"url": "http://localhost:18000/login?next=/dashboard",
"referenceUrl": "",
"misMatchThreshold" : 0.1
},
{
"label": "Profile",
"url": "http://localhost:18000/login?next=/u/edx",
"referenceUrl": "",
"misMatchThreshold" : 0.1
},
{
"label": "Account setting",
"url": "http://localhost:18000/login?next=/account/settings",
"referenceUrl": "",
"postInteractionWait": 4000,
"misMatchThreshold" : 0.1
},
{
"label": "Programs",
"url": "http://localhost:18000/login?next=/dashboard/programs/",
"referenceUrl": "",
"misMatchThreshold" : 0.1
}
],
"paths": {
"bitmaps_reference": "backstop_data/bitmaps_reference",
"bitmaps_test": "backstop_data/bitmaps_test",
"engine_scripts": "backstop_data/engine_scripts",
"html_report": "backstop_data/html_report",
"ci_report": "backstop_data/ci_report"
},
"report": ["browser"],
"engine": "puppeteer",
"engineOptions": {
"args": ["--no-sandbox"],
"ignoreDefaultArgs": ["--disable-extensions"]
},
"asyncCaptureLimit": 1,
"asyncCompareLimit": 100,
"debug": false,
"debugWindow": false
}