We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c942d17 commit 6478f15Copy full SHA for 6478f15
lighthouse-viewer/app/src/github-api.js
@@ -116,7 +116,7 @@ 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(`gist ${id} does not contain a Lighthouse report`);
+ throw new Error(`Failed to find a Lighthouse report (*${GithubApi.LH_JSON_EXT}) in gist ${id}`);
120
}
121
const f = json.files[filename];
122
if (f.truncated) {
0 commit comments