diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-05-20 21:02:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-20 15:02:39 +0200 |
commit | c9db09630d9761b4c7625fbd95f46678124043df (patch) | |
tree | 06e337dff924475f19b358788f8e209776f8775a /cli/tests/integration_tests.rs | |
parent | 014d8d51c0bfb10a8f47544a94d5a2b6cea7b578 (diff) |
fix(cli/tools/test_runner): --doc should not require permissions (#10719)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index ce1205698..aff073d0d 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -24,7 +24,6 @@ use tokio::task::LocalSet; fn typecheck_declarations_ns() { let status = util::deno_cmd() .arg("test") - .arg("--allow-all") .arg("--doc") .arg(util::root_path().join("cli/dts/lib.deno.ns.d.ts")) .spawn() @@ -41,7 +40,6 @@ fn typecheck_declarations_unstable() { let status = util::deno_cmd() .arg("test") .arg("--doc") - .arg("--allow-all") .arg("--unstable") .arg(util::root_path().join("cli/dts/lib.deno.unstable.d.ts")) .spawn() |