diff options
Diffstat (limited to 'tests/integration/test_tests.rs')
-rw-r--r-- | tests/integration/test_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/test_tests.rs b/tests/integration/test_tests.rs index 2f5a620e1..d4934e03c 100644 --- a/tests/integration/test_tests.rs +++ b/tests/integration/test_tests.rs @@ -251,13 +251,13 @@ itest!(no_run { }); itest!(allow_all { - args: "test --allow-all test/allow_all.ts", + args: "test --config ../config/deno.json --allow-all test/allow_all.ts", exit_code: 0, output: "test/allow_all.out", }); itest!(allow_none { - args: "test test/allow_none.ts", + args: "test --config ../config/deno.json test/allow_none.ts", exit_code: 1, output: "test/allow_none.out", }); |