From cbbd9443592f79f6abf9e5019840de4e01ff8580 Mon Sep 17 00:00:00 2001 From: Emmanuel Date: Wed, 8 Jul 2020 16:50:12 +0200 Subject: feat(cli): json option for "deno info" (#6372) --- cli/tests/integration_tests.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'cli/tests/integration_tests.rs') 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", -- cgit v1.2.3