summaryrefslogtreecommitdiff
path: root/cli/tests/unit/request_test.ts
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2024-02-08 13:09:47 -0700
committerGitHub <noreply@github.com>2024-02-08 13:09:47 -0700
commita417772bd7dc4f8508621ec7b2fb75f9bfeca955 (patch)
treef2f522db2abb07eb5472cf9d81645506b6d91380 /cli/tests/unit/request_test.ts
parentd704007e5fdcf1f27030dc5832b884290f1f35de (diff)
chore: Promote some integration tests to js_unit_tests (#22355)
- Move a workers test to js_unit_tests and make it work - (slightly) repair the websocketstream_test and make it a JS unit test. This test was being ignored and rotted quite a bit, but there's some value in running as much of it as we can. - Merge the two websocket test files
Diffstat (limited to 'cli/tests/unit/request_test.ts')
-rw-r--r--cli/tests/unit/request_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/request_test.ts b/cli/tests/unit/request_test.ts
index 73a24304e..fe34c20a5 100644
--- a/cli/tests/unit/request_test.ts
+++ b/cli/tests/unit/request_test.ts
@@ -33,7 +33,7 @@ Deno.test(function methodNonString() {
Deno.test(function requestRelativeUrl() {
assertEquals(
new Request("relative-url").url,
- "http://js-unit-tests/foo/relative-url",
+ "http://127.0.0.1:4545/relative-url",
);
});