-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconst.js
More file actions
123 lines (117 loc) · 4.94 KB
/
const.js
File metadata and controls
123 lines (117 loc) · 4.94 KB
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
// The weeks we're interested in getting WPT data from.
export const WEEKS = [
{ from: "2025-07-03", to: "2025-07-09" },
{ from: "2025-07-10", to: "2025-07-16" },
{ from: "2025-07-17", to: "2025-07-23" },
{ from: "2025-07-24", to: "2025-07-30" },
{ from: "2025-07-31", to: "2025-08-06" },
{ from: "2025-08-07", to: "2025-08-13" },
{ from: "2025-08-14", to: "2025-08-20" },
{ from: "2025-08-21", to: "2025-08-27" },
{ from: "2025-08-28", to: "2025-09-03" },
{ from: "2025-09-04", to: "2025-09-10" },
{ from: "2025-09-11", to: "2025-09-17" },
{ from: "2025-09-18", to: "2025-09-24" },
{ from: "2025-09-25", to: "2025-10-01" },
{ from: "2025-10-02", to: "2025-10-08" },
{ from: "2025-10-09", to: "2025-10-15" },
{ from: "2025-10-16", to: "2025-10-22" },
{ from: "2025-10-23", to: "2025-10-29" },
{ from: "2025-10-30", to: "2025-11-05" },
{ from: "2025-11-06", to: "2025-11-12" },
{ from: "2025-11-13", to: "2025-11-19" },
{ from: "2025-11-20", to: "2025-11-26" },
{ from: "2025-11-27", to: "2025-12-03" },
{ from: "2025-12-04", to: "2025-12-10" },
{ from: "2025-12-11", to: "2025-12-17" },
{ from: "2025-12-18", to: "2025-12-24" },
{ from: "2025-12-25", to: "2025-12-31" },
{ from: "2026-01-01", to: "2026-01-07" },
{ from: "2026-01-08", to: "2026-01-14" },
{ from: "2026-01-15", to: "2026-01-21" },
{ from: "2026-01-22", to: "2026-01-28" },
{ from: "2026-01-29", to: "2026-02-04" },
{ from: "2026-02-05", to: "2026-02-11" },
{ from: "2026-02-12", to: "2026-02-18" },
{ from: "2026-02-19", to: "2026-02-25" },
{ from: "2026-02-26", to: "2026-03-04" },
{ from: "2026-03-05", to: "2026-03-11" },
{ from: "2026-03-12", to: "2026-03-18" },
{ from: "2026-03-19", to: "2026-03-25" },
{ from: "2026-03-26", to: "2026-04-01" },
{ from: "2026-04-02", to: "2026-04-08" },
{ from: "2026-04-09", to: "2026-04-15" },
{ from: "2026-04-16", to: "2026-04-22" },
{ from: "2026-04-23", to: "2026-04-29" },
{ from: "2026-04-30", to: "2026-05-06" },
{ from: "2026-05-07", to: "2026-05-13" },
{ from: "2026-05-14", to: "2026-05-20" },
{ from: "2026-05-21", to: "2026-05-27" },
{ from: "2026-05-28", to: "2026-06-03" },
{ from: "2026-06-04", to: "2026-06-10" },
{ from: "2026-06-11", to: "2026-06-17" },
{ from: "2026-06-18", to: "2026-06-24" },
{ from: "2026-06-25", to: "2026-07-01" },
{ from: "2026-07-02", to: "2026-07-08" },
{ from: "2026-07-09", to: "2026-07-15" },
{ from: "2026-07-16", to: "2026-07-22" },
{ from: "2026-07-23", to: "2026-07-29" },
{ from: "2026-07-30", to: "2026-08-05" },
{ from: "2026-08-06", to: "2026-08-12" },
{ from: "2026-08-13", to: "2026-08-19" },
{ from: "2026-08-20", to: "2026-08-26" },
{ from: "2026-08-27", to: "2026-09-02" },
{ from: "2026-09-03", to: "2026-09-09" },
{ from: "2026-09-10", to: "2026-09-16" },
{ from: "2026-09-17", to: "2026-09-23" },
{ from: "2026-09-24", to: "2026-09-30" },
{ from: "2026-10-01", to: "2026-10-07" },
{ from: "2026-10-08", to: "2026-10-14" },
{ from: "2026-10-15", to: "2026-10-21" },
{ from: "2026-10-22", to: "2026-10-28" },
{ from: "2026-10-29", to: "2026-11-04" },
{ from: "2026-11-05", to: "2026-11-11" },
{ from: "2026-11-12", to: "2026-11-18" },
{ from: "2026-11-19", to: "2026-11-25" },
{ from: "2026-11-26", to: "2026-12-02" },
{ from: "2026-12-03", to: "2026-12-09" },
{ from: "2026-12-10", to: "2026-12-16" },
{ from: "2026-12-17", to: "2026-12-23" },
{ from: "2026-12-24", to: "2026-12-30" },
{ from: "2026-12-31", to: "2027-01-06" },
{ from: "2027-01-07", to: "2027-01-13" },
{ from: "2027-01-14", to: "2027-01-20" },
{ from: "2027-01-21", to: "2027-01-27" },
{ from: "2027-01-28", to: "2027-02-03" },
{ from: "2027-02-04", to: "2027-02-10" },
{ from: "2027-02-11", to: "2027-02-17" },
{ from: "2027-02-18", to: "2027-02-24" }
];
// The browsers we're interested in.
export const BROWSERS = ["chrome", "edge", "firefox", "safari"];
// The browser version we're using for WPT test results.
// "experimental": most recent WPT results.
// export const BROWSER_FLAVOR = "experimental";
// "stable": more in line with the compat data.
export const BROWSER_FLAVOR = "stable";
// The branch where we're getting the WPT data from.
export const WPT_BRANCH = "master";
// Whether to include tentative results in the WPT data.
export const INCLUDE_TENTATIVE = true;
// The JS engine names to use when retrieving JavaScript test results from test262.
export const JS_ENGINES_PER_BROWSER = BROWSER_FLAVOR === "experimental"
? {
chrome: "v8_exp",
edge: "v8_exp",
firefox: "sm_exp",
safari: "jsc_exp",
}
: {
chrome: "v8",
edge: "v8",
firefox: "sm",
safari: "jsc",
};
// Where to get Test262 historical data.
// See https://github.com/test262-fyi/data/issues/13#issuecomment-3872802218
export const TEST262_DATA_END_POINT = "https://f.sakamoto.pl/linus/data/test262.fyi";