Bug 1891340 - Part 1: Add parameters to customize the before and after icon tints...
[gecko.git] / testing / performance / perftest_WPT_firefox_init_file.js
blob0114a5fbaaad4e72e950756b002ba2f940c4d7cb
1 // This Source Code Form is subject to the terms of the Mozilla Public
2 // License, v. 2.0. If a copy of the MPL was not distributed with this
3 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
4 /* eslint-env node */
5 "use strict";
6 function setUp() {}
8 function tearDown() {}
10 function test() {}
12 module.exports = {
13   setUp,
14   tearDown,
15   test,
16   owner: "Performance Testing Team",
17   name: "webpagetest-firefox",
18   description:
19     "Run webpagetest performance pageload tests on Firefox against Alexa top 50 websites",
20   longDescription: `This mozperftest gets webpagetest to run pageload tests on Firefox against the 50 most popular
21   websites and provide data. The full list of data returned from webpagetest: firstContentfulPaint,
22   timeToContentfulPaint, visualComplete90, firstPaint, visualComplete99, visualComplete, SpeedIndex, bytesIn, bytesOut,
23   TTFB, fullyLoadedCPUms, fullyLoadedCPUpct, domElements, domContentLoadedEventStart, domContentLoadedEventEnd,
24   loadEventStart, loadEventEnd`,
25   options: {
26     test_parameters: {
27       location: "ec2-us-east-1",
28       browser: "Firefox",
29       connection: "Cable",
30       timeout_limit: 21600,
31       wait_between_requests: 5,
32       statistics: ["average", "median", "standardDeviation"],
33       label: "",
34       runs: 3,
35       fvonly: 0,
36       private: 0,
37       web10: 0,
38       script: "",
39       block: "",
40       video: 1,
41       tcpdump: 0,
42       noimages: 0,
43       keepua: 1,
44       uastring: "",
45       htmlbody: 0,
46       custom: "",
47       ignoreSSL: 0,
48       appendua: "",
49       injectScript: "",
50       disableAVIF: 0,
51       disableWEBP: 0,
52       disableJXL: 0,
53     },
54     test_list: [
55       "google.com",
56       "youtube.com",
57       "facebook.com",
58       "qq.com",
59       "baidu.com",
60       "sohu.com",
61       "360.cn",
62       "jd.com",
63       "amazon.com",
64       "yahoo.com",
65       "zoom.us",
66       "sina.com.cn",
67       "live.com",
68       "reddit.com",
69       "netflix.com",
70       "microsoft.com",
71       "instagram.com",
72       "google.com.hk",
73       "csdn.net",
74       "bing.com",
75       "vk.com",
76       "yahoo.co.jp",
77       "twitter.com",
78       "naver.com",
79       "ebay.com",
80       "force.com",
81       "amazon.in",
82       "adobe.com",
83       "aliexpress.com",
84       "linkedin.com",
85       "tianya.cn",
86       "yy.com",
87       "huanqiu.com",
88       "amazon.co.jp",
89       "okezone.com",
90     ],
91     browser_metrics: [
92       "firstContentfulPaint",
93       "timeToContentfulPaint",
94       "visualComplete90",
95       "firstPaint",
96       "visualComplete99",
97       "visualComplete",
98       "SpeedIndex",
99       "bytesIn",
100       "bytesOut",
101       "TTFB",
102       "fullyLoadedCPUms",
103       "fullyLoadedCPUpct",
104       "domElements",
105       "domContentLoadedEventStart",
106       "domContentLoadedEventEnd",
107       "loadEventStart",
108       "loadEventEnd",
109     ],
110   },