summaryrefslogtreecommitdiff
path: root/cli/tests/module_graph/file_tests-checkwithconfig.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/file_tests-checkwithconfig.ts
parentbfce376c685694569be2cbf0716dd58f898c111e (diff)
fix(cli): make hashes of tsconfig deterministic (#8167)
Fixes #8163
Diffstat (limited to 'cli/tests/module_graph/file_tests-checkwithconfig.ts')
-rw-r--r--cli/tests/module_graph/file_tests-checkwithconfig.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/module_graph/file_tests-checkwithconfig.ts b/cli/tests/module_graph/file_tests-checkwithconfig.ts
new file mode 100644
index 000000000..e7af5fa19
--- /dev/null
+++ b/cli/tests/module_graph/file_tests-checkwithconfig.ts
@@ -0,0 +1,5 @@
+import { ServerRequest } from "https://deno.land/std/http/server.ts";
+
+export default (req: ServerRequest) => {
+ req.respond({ body: `Hello, from Deno v${Deno.version.deno}!` });
+};