lighthouse 11.0.0-dev.20230821 → 11.0.0-dev.20230823
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/audits/redirects.js +1 -4
- package/package.json +1 -1
package/core/audits/redirects.js
CHANGED
|
@@ -144,10 +144,7 @@ class Redirects extends Audit {
|
|
|
144
144
|
{overallSavingsMs: totalWastedMs});
|
|
145
145
|
|
|
146
146
|
return {
|
|
147
|
-
|
|
148
|
-
// TODO(phulce): reconsider if cases like the example in https://github.com/GoogleChrome/lighthouse/issues/8984
|
|
149
|
-
// should fail this audit.
|
|
150
|
-
score: documentRequests.length <= 2 ? 1 : ByteEfficiencyAudit.scoreForWastedMs(totalWastedMs),
|
|
147
|
+
score: ByteEfficiencyAudit.scoreForWastedMs(totalWastedMs),
|
|
151
148
|
numericValue: totalWastedMs,
|
|
152
149
|
numericUnit: 'millisecond',
|
|
153
150
|
displayValue: totalWastedMs ?
|
package/package.json
CHANGED