summaryrefslogtreecommitdiff
path: root/cli/tests/integration/info_tests.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2021-07-22 15:34:28 +1000
committerGitHub <noreply@github.com>2021-07-22 15:34:28 +1000
commit7d151efc683e512386e4ad95bc01259b536d28fc (patch)
tree95b2b5920f166c761400a690a6841951ae6fe693 /cli/tests/integration/info_tests.rs
parentbdc53b45b7665b29c2980416c3681e1671989f9c (diff)
fix(cli): info now displays type reference deps (#11478)
Fixes #11476
Diffstat (limited to 'cli/tests/integration/info_tests.rs')
-rw-r--r--cli/tests/integration/info_tests.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/info_tests.rs b/cli/tests/integration/info_tests.rs
index 3bba89cc0..af0f259ea 100644
--- a/cli/tests/integration/info_tests.rs
+++ b/cli/tests/integration/info_tests.rs
@@ -118,3 +118,9 @@ itest!(data_null_error {
args: "info info/data_null_error/mod.ts",
output: "info/data_null_error/data_null_error.out",
});
+
+itest!(deno_info_types_header_direct {
+ args: "info --reload type_directives_01.ts",
+ output: "info/types_header.out",
+ http_server: true,
+});