Skip to content

Commit

Permalink
Add https to audits
Browse files Browse the repository at this point in the history
  • Loading branch information
ebidel committed Sep 23, 2016
1 parent b0eb765 commit 71e2020
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lighthouse-core/config/dobetterweb.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@
"gatherers": [
"../gather/gatherers/dobetterweb/appcache",
"../gather/gatherers/dobetterweb/websql",
"../gather/gatherers/https",
"../gather/gatherers/same-origin-resources"
]
}],

"audits": [
"../audits/dobetterweb/appcache-manifest",
"../audits/dobetterweb/no-websql",
"../audits/dobetterweb/uses-http2"
"../audits/dobetterweb/uses-http2",
"../audits/is-on-https"
],

"aggregations": [{
Expand All @@ -33,8 +35,11 @@
}
}
}, {
"name": "Performance",
"name": "Using modern protocols",
"criteria": {
"is-on-https": {
"rawValue": false
},
"uses-http2": {
"rawValue": false,
"description": "Resources made by this application should be severed over HTTP/2 for improved performance."
Expand Down

0 comments on commit 71e2020

Please sign in to comment.