We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6478f15 commit 1ca40deCopy full SHA for 1ca40de
lighthouse-viewer/app/src/github-api.js
@@ -116,7 +116,9 @@ class GithubApi {
116
const filename = Object.keys(json.files)
117
.find(filename => filename.endsWith(GithubApi.LH_JSON_EXT));
118
if (!filename) {
119
- throw new Error(`Failed to find a Lighthouse report (*${GithubApi.LH_JSON_EXT}) in gist ${id}`);
+ throw new Error(
120
+ `Failed to find a Lighthouse report (*${GithubApi.LH_JSON_EXT}) in gist ${id}`
121
+ );
122
}
123
const f = json.files[filename];
124
if (f.truncated) {
0 commit comments