Skip to content

Commit

Permalink
Update supported node versions on unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jpuh committed Jan 3, 2025
1 parent 1735261 commit a38b4ee
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 7, 8, 10, 12, 14, 16, 18 ]
node: [ 18, 20, 22, 23 ]
name: Node ${{ matrix.node }}
steps:
- name: Checkout
Expand Down
1 change: 0 additions & 1 deletion test/client_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ describe('Client', () => {
should.fail();
} catch (e) {
should(e).be.an.instanceOf(Error);
should(e.message).match(/connect ECONNREFUSED/);
should(e.code).equal('ECONNREFUSED');
}
});
Expand Down

0 comments on commit a38b4ee

Please sign in to comment.