summaryrefslogtreecommitdiff
path: root/cli/tests/module_graph/https_deno.land-std-http-server.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-10-29 21:18:18 +1100
committerGitHub <noreply@github.com>2020-10-29 21:18:18 +1100
commitb0482400c96476946514f03f27f139dd505b06fb (patch)
treebbca9156c79a5de1e42354b6af5ab73c88ffc05e /cli/tests/module_graph/https_deno.land-std-http-server.ts
parentbfce376c685694569be2cbf0716dd58f898c111e (diff)
fix(cli): make hashes of tsconfig deterministic (#8167)
Fixes #8163
Diffstat (limited to 'cli/tests/module_graph/https_deno.land-std-http-server.ts')
-rw-r--r--cli/tests/module_graph/https_deno.land-std-http-server.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/module_graph/https_deno.land-std-http-server.ts b/cli/tests/module_graph/https_deno.land-std-http-server.ts
new file mode 100644
index 000000000..0b3c995ec
--- /dev/null
+++ b/cli/tests/module_graph/https_deno.land-std-http-server.ts
@@ -0,0 +1,5 @@
+export class ServerRequest {
+ respond(value: { body: string }) {
+ console.log(value);
+ }
+}