diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-09-12 23:34:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-12 23:34:54 +0200 |
commit | 82d0f7ec84ccf8652441b5de620e85180ce55fc0 (patch) | |
tree | cb9b51a5c2a4711c2d32d53f582a20813b910630 /cli/tests | |
parent | d048f58f0538d2ea7c8a418119f5092d3db719ce (diff) |
chore: remove --no-check from deno info (#7439)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/031_info_no_check.out | 5 | ||||
-rw-r--r-- | cli/tests/031_info_ts_error.out | 5 | ||||
-rw-r--r-- | cli/tests/031_info_ts_error.ts (renamed from cli/tests/031_info_no_check.ts) | 0 | ||||
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
4 files changed, 8 insertions, 8 deletions
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_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_no_check.ts b/cli/tests/031_info_ts_error.ts index 9b7492dbe..9b7492dbe 100644 --- a/cli/tests/031_info_no_check.ts +++ b/cli/tests/031_info_ts_error.ts 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 { |