diff options
Diffstat (limited to 'tests/specs/run/045_proxy/proxy_client.ts')
-rw-r--r-- | tests/specs/run/045_proxy/proxy_client.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/run/045_proxy/proxy_client.ts b/tests/specs/run/045_proxy/proxy_client.ts new file mode 100644 index 000000000..41deae2a5 --- /dev/null +++ b/tests/specs/run/045_proxy/proxy_client.ts @@ -0,0 +1,5 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. +const res = await fetch( + "http://localhost:4545/run/045_mod.ts", +); +console.log(`Response http: ${await res.text()}`); |