From 82d0f7ec84ccf8652441b5de620e85180ce55fc0 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Sat, 12 Sep 2020 23:34:54 +0200 Subject: chore: remove --no-check from deno info (#7439) --- cli/tests/031_info_no_check.out | 5 ----- cli/tests/031_info_no_check.ts | 1 - cli/tests/031_info_ts_error.out | 5 +++++ cli/tests/031_info_ts_error.ts | 1 + cli/tests/integration_tests.rs | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 cli/tests/031_info_no_check.out delete mode 100644 cli/tests/031_info_no_check.ts create mode 100644 cli/tests/031_info_ts_error.out create mode 100644 cli/tests/031_info_ts_error.ts (limited to 'cli/tests') diff --git a/cli/tests/031_info_no_check.out b/cli/tests/031_info_no_check.out deleted file mode 100644 index 601490055..000000000 --- a/cli/tests/031_info_no_check.out +++ /dev/null @@ -1,5 +0,0 @@ -[WILDCARD] -local: [WILDCARD]031_info_no_check.ts -type: TypeScript -deps: 0 unique (total [WILDCARD]) -[WILDCARD]031_info_no_check.ts ([WILDCARD]) diff --git a/cli/tests/031_info_no_check.ts b/cli/tests/031_info_no_check.ts deleted file mode 100644 index 9b7492dbe..000000000 --- a/cli/tests/031_info_no_check.ts +++ /dev/null @@ -1 +0,0 @@ -const _foo: string = 1; diff --git a/cli/tests/031_info_ts_error.out b/cli/tests/031_info_ts_error.out new file mode 100644 index 000000000..8c3064cdf --- /dev/null +++ b/cli/tests/031_info_ts_error.out @@ -0,0 +1,5 @@ +[WILDCARD] +local: [WILDCARD]031_info_ts_error.ts +type: TypeScript +deps: 0 unique (total [WILDCARD]) +[WILDCARD]031_info_ts_error.ts ([WILDCARD]) diff --git a/cli/tests/031_info_ts_error.ts b/cli/tests/031_info_ts_error.ts new file mode 100644 index 000000000..9b7492dbe --- /dev/null +++ b/cli/tests/031_info_ts_error.ts @@ -0,0 +1 @@ +const _foo: string = 1; diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 23c44ba89..3c2154dff 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1518,9 +1518,9 @@ itest!(_030_eval_ts { output: "030_eval_ts.out", }); -itest!(_031_info_no_check { - args: "info --no-check 031_info_no_check.ts", - output: "031_info_no_check.out", +itest!(_031_info_ts_error { + args: "info 031_info_ts_error.ts", + output: "031_info_ts_error.out", }); itest!(_033_import_map { -- cgit v1.2.3