diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-06-01 07:45:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 16:45:37 +1000 |
commit | 6dd7a7ecd9d9b09f5112c73c67aa5f94480c8196 (patch) | |
tree | e4286caa3543d5184a65cadaacfd17b178495469 /cli/tests/integration_tests.rs | |
parent | 595700c993891ec8bf83f455a6602070ab8351ac (diff) |
fix(cli): represent bare imports as module graph error slots (#10804)
Fixes #10795
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 5af533dab..6c5626666 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -3139,6 +3139,12 @@ console.log("finish"); exit_code: 1, }); + itest!(_095_cache_with_bare_import { + args: "cache 095_cache_with_bare_import.ts", + output: "095_cache_with_bare_import.ts.out", + exit_code: 1, + }); + itest!(dynamic_import_permissions_remote_remote { args: "run --quiet --reload --allow-net=localhost:4545 dynamic_import/permissions_remote_remote.ts", output: "dynamic_import/permissions_remote_remote.ts.out", @@ -3481,9 +3487,9 @@ console.log("finish"); http_server: true, }); - itest!(error_027_bare_import_error { - args: "bundle error_027_bare_import_error.ts", - output: "error_027_bare_import_error.ts.out", + itest!(error_027_bundle_with_bare_import { + args: "bundle error_027_bundle_with_bare_import.ts", + output: "error_027_bundle_with_bare_import.ts.out", exit_code: 1, }); |