Skip to content

Commit

Permalink
First attempt to fix CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
sgwilym committed May 31, 2024
1 parent 822889f commit 9b59ac5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
deno-version: ["1.40.3"]
deno-version: ["1.44.0"]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions src/wgps/transports/transport.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ const scenarioWebsocket: TestScenarioTransport = {
return response;
},
hostname: "0.0.0.0",
port: 1099,
port: 0,
});

const clientSocket = new WebSocket("http://0.0.0.0:1099");
const clientSocket = new WebSocket(`http://0.0.0.0:${server.addr.port}`);

const serverSocket = await serverSocketPromise.promise;

Expand Down

0 comments on commit 9b59ac5

Please sign in to comment.