Skip to content

Commit 7be5d3b

Browse files
committed
simplify creating runtime args
Signed-off-by: Karthik Ganeshram <[email protected]>
1 parent ac82837 commit 7be5d3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test-app/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import { headersTest, health, kvTest, kvTestUint8Array, outboundHttp, statusTest
33

44
// Verify top level init location
55
if (globalThis.location.href != "http://foo.bar/") {
6-
throw new Error(`Expected top-level init location to be "top-level", got "${globalThis.location}"`);
6+
throw new Error(`Expected top-level init location to be "http://foo.bar/", got "${globalThis.location}"`);
77
} else {
8-
console.log("Top-level init location verified:", globalThis.location.href);
8+
console.log(`Top-level init location verified:, ${globalThis.location.href}`);
99
}
1010

1111
let router = AutoRouter()

0 commit comments

Comments
 (0)