-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cypress.json
86 lines (86 loc) · 2.05 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
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
{
"baseUrl": "http://localhost:8000/",
"numTestsKeptInMemory": 1000,
"watchForFileChanges": false,
"env": {
"context": {
"exclude": [
["#query"],
["label[for=\"query\"]"],
[".search-button"],
["nav[aria-checked]"],
["aside[aria-checked]"],
["drawer-menu[aria-checked]"]
]
},
"config": {
"runOnly": ["wcag2a", "section508", "best-practice"],
"rules": {
"landmark-complementary-is-top-level": { "enabled": false },
"landmark-no-duplicate-banner": { "enabled": false },
"landmark-banner-is-top-level": { "enabled": false }
}
},
"routes": {
"index": "/",
"article": "/article",
"blog": "/blog",
"post": "/blog/classic-modern-architecture",
"book": "/book",
"cv": "/cv",
"docs": "/docs/features"
},
"dynamicRoutes": {
"data": "/data",
"embed": "/embed",
"search": "/search",
"print": "/print"
},
"landmarks": {
"index": {
"body": "body",
"header": "header[role=\"banner\"]",
"main-article": "main section article",
"sidebar-header": "aside header",
"sidebar-article": "aside section article"
},
"article": {
"body": "body"
},
"blog": {
"body": "body"
},
"post": {
"body": "body"
},
"book": {
"body": "body"
},
"cv": {
"body": "body"
},
"docs": {
"body": "body",
"header": "header[role=\"banner\"]",
"sidebar": "aside.sidebar",
"main-article": "main section article"
}
},
"breakpoints": {
"xs": 320,
"sm": 576,
"md": 768,
"lg": 992,
"xl": 1200,
"xxl": 1600
},
"activeElements": {
"index": ["header[role=\"banner\"] .menu .search-button", "a"],
"article": ["a"],
"blog": ["a"],
"cv": ["a"],
"docs": ["a"]
},
"tabElements": "button, a[href], input, select, textarea, [tabindex]:not([tabindex=\"-1\"])"
}
}