Skip to content

Commit

Permalink
ci: Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwalton committed Mar 22, 2024
1 parent 122e7d6 commit f3c9884
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-versions: [18.x, 20.x]
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node-version }}
Expand Down
6 changes: 1 addition & 5 deletions test/integration/integration/customErrorFormattingTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,7 @@ describe('integration test', function () {
method: 'post',
headers: { 'content-type': 'application/json' },
body: '{',
})
.expect(400)
.expectBody({
message: 'Unexpected end of JSON input',
});
}).expect(400);
});
});
});

0 comments on commit f3c9884

Please sign in to comment.