diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-08-26 20:27:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-26 20:27:06 +0200 |
commit | a7fd3a4f58b5a3c84456ffae1bd5dd73124ea9ac (patch) | |
tree | f9530e6c74be4ba97b125b9ac0ec6afebad78d49 /cli/tests/integration_tests.rs | |
parent | c8b5f1e454d5cb2bd7580bbe0ac4fa83237e9f41 (diff) |
fix(cli): revert "never type check deno info #6978" (#7199)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 2b7ffa26b..4184b0b0a 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1446,9 +1446,8 @@ itest!(_030_eval_ts { }); itest!(_031_info_no_check { - args: "info 031_info_no_check.ts", + args: "info --no-check 031_info_no_check.ts", output: "031_info_no_check.out", - http_server: true, }); itest!(_033_import_map { @@ -1544,10 +1543,7 @@ itest!(_048_media_types_jsx { http_server: true, }); -// TODO(nayeemrmn): This hits an SWC type-stripping bug: -// `error: Unterminated regexp literal at http://localhost:4545/cli/tests/subdir/mt_video_vdn_tsx.t2.tsx:4:19` -// Re-enable once fixed. -itest_ignore!(_049_info_flag_script_jsx { +itest!(_049_info_flag_script_jsx { args: "info http://127.0.0.1:4545/cli/tests/048_media_types_jsx.ts", output: "049_info_flag_script_jsx.out", http_server: true, @@ -2284,6 +2280,11 @@ itest!(import_file_with_colon { http_server: true, }); +itest!(info_type_import { + args: "info info_type_import.ts", + output: "info_type_import.out", +}); + #[test] fn cafile_env_fetch() { use url::Url; |