From 653180699631475c680958a0d85da7dd2258a14d Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 18 May 2017 13:47:20 +0100 Subject: [PATCH] build(aio): do not ignore `is-on-https` in lighthouse check Lighthouse v1.6.5 treats localhost/1.2.7.0.0.1 as secure domains (i.e. as if they where HTTPS), so we need to stop handling the is-on-https audit specially. --- aio/scripts/test-pwa-score.js | 1 - 1 file changed, 1 deletion(-) diff --git a/aio/scripts/test-pwa-score.js b/aio/scripts/test-pwa-score.js index dae5cc28b56df..f87ef3a9e2374 100644 --- a/aio/scripts/test-pwa-score.js +++ b/aio/scripts/test-pwa-score.js @@ -60,7 +60,6 @@ function evaluateScore(expectedScore, actualScore) { function ignoreHttpsAudits(aggregations) { const httpsAudits = [ - 'is-on-https', 'redirects-http' ];