summaryrefslogtreecommitdiff
path: root/cli/tests/integration/bundle_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/integration/bundle_tests.rs')
-rw-r--r--cli/tests/integration/bundle_tests.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/cli/tests/integration/bundle_tests.rs b/cli/tests/integration/bundle_tests.rs
index e1a75f18d..9c328abdb 100644
--- a/cli/tests/integration/bundle_tests.rs
+++ b/cli/tests/integration/bundle_tests.rs
@@ -456,3 +456,16 @@ itest!(bundle_ignore_directives {
args: "bundle subdir/mod1.ts",
output: "bundle_ignore_directives.test.out",
});
+
+itest!(check_local_by_default {
+ args: "bundle --quiet bundle/check_local_by_default.ts",
+ output: "bundle/check_local_by_default.out",
+ http_server: true,
+});
+
+itest!(check_local_by_default2 {
+ args: "bundle --quiet bundle/check_local_by_default2.ts",
+ output: "bundle/check_local_by_default2.out",
+ http_server: true,
+ exit_code: 1,
+});