-
Notifications
You must be signed in to change notification settings - Fork 13
/
lighthouseConfig.test.js.snap
71 lines (70 loc) · 1.82 KB
/
lighthouseConfig.test.js.snap
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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`config should match snapshot 1`] = `
{
"desktop": {
"extends": "lighthouse:default",
"settings": {
"emulatedUserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4420.0 Safari/537.36 Chrome-Lighthouse",
"formFactor": "desktop",
"maxWaitForFcp": 15000,
"maxWaitForLoad": 35000,
"screenEmulation": {
"deviceScaleFactor": 1,
"disabled": false,
"height": 940,
"mobile": false,
"width": 1350,
},
"skipAudits": [
"uses-http2",
],
"throttling": {
"cpuSlowdownMultiplier": 1,
"downloadThroughputKbps": 0,
"requestLatencyMs": 0,
"rttMs": 40,
"throughputKbps": 10240,
"uploadThroughputKbps": 0,
},
},
},
"mobile": {
"extends": "lighthouse:default",
"settings": {
"maxWaitForFcp": 15000,
"maxWaitForLoad": 35000,
"skipAudits": [
"uses-http2",
],
},
},
"throttling": {
"DEVTOOLS_RTT_ADJUSTMENT_FACTOR": 3.75,
"DEVTOOLS_THROUGHPUT_ADJUSTMENT_FACTOR": 0.9,
"desktopDense4G": {
"cpuSlowdownMultiplier": 1,
"downloadThroughputKbps": 0,
"requestLatencyMs": 0,
"rttMs": 40,
"throughputKbps": 10240,
"uploadThroughputKbps": 0,
},
"mobileRegular3G": {
"cpuSlowdownMultiplier": 4,
"downloadThroughputKbps": 630,
"requestLatencyMs": 1125,
"rttMs": 300,
"throughputKbps": 700,
"uploadThroughputKbps": 630,
},
"mobileSlow4G": {
"cpuSlowdownMultiplier": 4,
"downloadThroughputKbps": 1474.5600000000002,
"requestLatencyMs": 562.5,
"rttMs": 150,
"throughputKbps": 1638.4,
"uploadThroughputKbps": 675,
},
},
}
`;