diff options
author | Emmanuel <implicitdef@users.noreply.github.com> | 2020-07-08 16:50:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 10:50:12 -0400 |
commit | cbbd9443592f79f6abf9e5019840de4e01ff8580 (patch) | |
tree | bb8c626e95db2ec103de4dcbeb5ec29b65e49aff /cli/tests/integration_tests.rs | |
parent | a2bf61d1ae3ba2ff746a98ad2f0a96b6fc7782d0 (diff) |
feat(cli): json option for "deno info" (#6372)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 9acb4ed3f..87a6f9d63 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1499,6 +1499,11 @@ itest!(_041_info_flag { output: "041_info_flag.out", }); +itest!(info_json { + args: "info --json --unstable", + output: "info_json.out", +}); + itest!(_042_dyn_import_evalcontext { args: "run --quiet --allow-read --reload 042_dyn_import_evalcontext.ts", output: "042_dyn_import_evalcontext.ts.out", @@ -1552,6 +1557,12 @@ itest!(_054_info_local_imports { exit_code: 0, }); +itest!(_055_info_file_json { + args: "info --quiet --json --unstable 005_more_imports.ts", + output: "055_info_file_json.out", + exit_code: 0, +}); + itest!(_056_make_temp_file_write_perm { args: "run --quiet --allow-read --allow-write=./subdir/ 056_make_temp_file_write_perm.ts", |