From a7fd3a4f58b5a3c84456ffae1bd5dd73124ea9ac Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Wed, 26 Aug 2020 20:27:06 +0200 Subject: fix(cli): revert "never type check deno info #6978" (#7199) --- cli/tests/integration_tests.rs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'cli/tests/integration_tests.rs') 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; -- cgit v1.2.3