diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-29 21:18:18 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 21:18:18 +1100 |
commit | b0482400c96476946514f03f27f139dd505b06fb (patch) | |
tree | bbca9156c79a5de1e42354b6af5ab73c88ffc05e /cli/tests/module_graph/file_tests-checkwithconfig.ts | |
parent | bfce376c685694569be2cbf0716dd58f898c111e (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.ts | 5 |
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}!` }); +}; |