diff options
author | William Perron <william.perron@live.ca> | 2020-09-21 09:07:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 15:07:19 +0200 |
commit | 42772845f6dde1b27a9e55c7738743388350f2b2 (patch) | |
tree | 73df54b336a34db95aa2e9c777cb1ea4f151125a /cli/tests/integration_tests.rs | |
parent | e06875e9f7e4b3365b9f30322e3e5307903feed4 (diff) |
fix(info): add --importmap flag (#7424)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 389afdea3..a03dc7dc4 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1711,6 +1711,12 @@ itest!(_064_permissions_revoke_global { output: "064_permissions_revoke_global.ts.out", }); +itest!(_065_import_map_info { + args: + "info --quiet --importmap=importmaps/import_map.json --unstable importmaps/test.ts", + output: "065_import_map_info.out", +}); + itest!(js_import_detect { args: "run --quiet --reload js_import_detect.ts", output: "js_import_detect.ts.out", |