Skip to content

Commit

Permalink
fix: linting issue in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BelfordZ committed Oct 23, 2020
1 parent 77bed21 commit b7523aa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ describe("meta-schema", () => {
let schema = false;
try {
schema = JSON.parse(s);
} catch (e) { }
} catch (e) {
console.error(`Cannot parse meta-schema. Recieved: ${s}`);
}

it("is valid json", () => {
expect(schema).toBeTruthy();
Expand Down

0 comments on commit b7523aa

Please sign in to comment.