Skip to content

Commit 04756aa

Browse files
committed
squash: .
1 parent a9da0a1 commit 04756aa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: .github/workflows/nodejs-ci-action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
node-version: [16.x, 18.x]
18+
node-version: [16.x, 18.x, 20.x]
1919

2020
steps:
2121
- uses: actions/checkout@v2

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: test/integration/parser_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ describe("JSON Event Format Parser", () => {
5656
const parser = new Parser();
5757

5858
// TODO: Should the parser catch the SyntaxError and re-throw a ValidationError?
59-
expect(parser.parse.bind(parser, payload)).to.throw(SyntaxError, "Unexpected token g in JSON at position 1");
59+
expect(parser.parse.bind(parser, payload)).to.throw(SyntaxError);
6060
});
6161

6262
it("Accepts a string as valid JSON", () => {

0 commit comments

Comments
 (0)