diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-08-03 14:55:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 14:55:03 +0200 |
commit | 9d50c5c1a6fbe6895b6a63dadcba7bacaf9dd578 (patch) | |
tree | 65d9a7c1899aa8844b2ee89b0991cc724095a580 /cli/tests/integration_tests.rs | |
parent | d54d4d21bddf0fe80a6f534ec945c655595c5f71 (diff) |
feat: hash file names in gen cache (#6911)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 89b5cc21e..687ab53dc 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2220,6 +2220,12 @@ itest!(compiler_js_error { exit_code: 1, }); +itest!(import_file_with_colon { + args: "run --quiet --reload import_file_with_colon.ts", + output: "import_file_with_colon.ts.out", + http_server: true, +}); + #[test] fn cafile_env_fetch() { use url::Url; |