Skip to content

Commit

Permalink
test: debug failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-guggisberg committed Nov 7, 2022
1 parent 99976cb commit 73b4243
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
executors:
node14:
docker:
- image: cimg/node:14.21
- image: cimg/node:18.10

orbs:
codecov: codecov/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion test/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class Server {
const { port } = this;
// eslint-disable-next-line no-nested-ternary
const proto = this.secure ? 'https' : (this.httpMajorVersion === 2 ? 'http2' : 'http');
return `${proto}://127.0.0.1:${port}`;
return `${proto}://localhost:${port}`;
}

async shutDown(force = false) {
Expand Down

0 comments on commit 73b4243

Please sign in to comment.