Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed May 4, 2024
1 parent d0309b4 commit 2948635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/server.deno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const startServer: StartServerHandler = (options) => {
const server = Deno.serve({
hostname: "localhost",
onListen(details) {
const url = new URL(`http://${details.hostname}:${details.port}/`);
const url = new URL(`http://localhost:${details.port}/`);
resolve({
rootUrl: url,
shutdown: () => server.shutdown(),
Expand Down

0 comments on commit 2948635

Please sign in to comment.