summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 28d2dc7c6..770e87244 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -2395,6 +2395,18 @@ mod integration {
output: "test/deno_test.out",
});
+ itest!(allow_all {
+ args: "test --unstable --allow-all test/allow_all.ts",
+ exit_code: 0,
+ output: "test/allow_all.out",
+ });
+
+ itest!(allow_none {
+ args: "test --unstable test/allow_none.ts",
+ exit_code: 1,
+ output: "test/allow_none.out",
+ });
+
itest!(fail_fast {
args: "test --fail-fast test/test_runner_test.ts",
exit_code: 1,