diff options
Diffstat (limited to 'cli/tests/testdata/run/045_proxy_client.ts')
| -rw-r--r-- | cli/tests/testdata/run/045_proxy_client.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/testdata/run/045_proxy_client.ts b/cli/tests/testdata/run/045_proxy_client.ts new file mode 100644 index 000000000..2a8728afa --- /dev/null +++ b/cli/tests/testdata/run/045_proxy_client.ts @@ -0,0 +1,5 @@ +// Copyright 2018-2022 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()}`); |
