From b0482400c96476946514f03f27f139dd505b06fb Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Thu, 29 Oct 2020 21:18:18 +1100 Subject: fix(cli): make hashes of tsconfig deterministic (#8167) Fixes #8163 --- cli/tests/module_graph/file_tests-checkwithconfig.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cli/tests/module_graph/file_tests-checkwithconfig.ts (limited to 'cli/tests/module_graph/file_tests-checkwithconfig.ts') 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}!` }); +}; -- cgit v1.2.3