aboutsummaryrefslogtreecommitdiff
path: root/test/js/node/async_hooks/AsyncLocalStorage.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/js/node/async_hooks/AsyncLocalStorage.test.ts')
-rw-r--r--test/js/node/async_hooks/AsyncLocalStorage.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/node/async_hooks/AsyncLocalStorage.test.ts b/test/js/node/async_hooks/AsyncLocalStorage.test.ts
index 1a7aad050..48f4cf16d 100644
--- a/test/js/node/async_hooks/AsyncLocalStorage.test.ts
+++ b/test/js/node/async_hooks/AsyncLocalStorage.test.ts
@@ -264,7 +264,7 @@ describe("async context passes through", () => {
},
});
- const response = await fetch(server.hostname + ":" + server.port);
+ const response = await fetch("http://" + server.hostname + ":" + server.port);
expect(await response.text()).toBe("value");
expect(s.getStore()).toBe("value");