forked from material-components/material-components-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiffing.json
71 lines (69 loc) · 1.9 KB
/
diffing.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
{
"resemble_config": {
"output": {
"transparency": 0
}
},
"flaky_test_config": {
"global_config": {
"max_retries": 2,
"min_changed_pixel_count": 15,
"max_changed_pixel_fraction_to_retry": 0.10,
"font_face_observer_timeout_ms": 3000,
"fonts_loaded_reflow_delay_ms": 0,
"retry_delay_ms": 0
},
"config_overrides": [
{
"description": "IE and Edge rendering is inherently flaky. `border-radius`, `box-shadow`, and font rendering (especially on <button> elements) seem to be the worst offenders.",
"browser_regex_patterns": [
"desktop_windows_edge@latest",
"desktop_windows_ie@11"
],
"custom_config": {
"max_retries": 3
}
},
{
"description": "IE and Edge are extra flaky on Text Field pages",
"browser_regex_patterns": [
"desktop_windows_edge@latest",
"desktop_windows_ie@11"
],
"url_regex_patterns": [
"mdc-textfield"
],
"custom_config": {
"max_retries": 6,
"fonts_loaded_reflow_delay_ms": 500
}
},
{
"description": "Edge frequently fails to load the Roboto font, especially on fullscreen pages and in highcontrast mode",
"browser_regex_patterns": [
"desktop_windows_edge@latest"
],
"url_regex_patterns": [
"mdc-dialog",
"mdc-drawer"
],
"custom_config": {
"skip_all": true
}
},
{
"description": "Edge flakes so frequently on certain pages that it needs to be disabled entirely",
"browser_regex_patterns": [
"desktop_windows_edge@latest"
],
"url_regex_patterns": [
"mdc-textfield/.*textarea",
"mdc-typography"
],
"custom_config": {
"skip_all": true
}
}
]
}
}