diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-10-23 08:35:43 +0900 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-10-22 19:35:43 -0400 |
commit | 2804ba8674150b80ee181cc3869e1fa12de661d3 (patch) | |
tree | 494a96b2afe927cbe8eff6c941ca8e0afbd39446 /cli/js/unit_test_runner.ts | |
parent | edd6a90da855619feecb05c2cf87448b0c23da86 (diff) |
remove --no-prompt flag, fail on missing permissions (#3183)
Diffstat (limited to 'cli/js/unit_test_runner.ts')
-rwxr-xr-x | cli/js/unit_test_runner.ts | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cli/js/unit_test_runner.ts b/cli/js/unit_test_runner.ts index d310f0a4e..913c575b2 100755 --- a/cli/js/unit_test_runner.ts +++ b/cli/js/unit_test_runner.ts @@ -52,13 +52,7 @@ async function main(): Promise<void> { console.log(`Running tests for: ${permsFmt}`); const cliPerms = permsToCliFlags(perms); // run subsequent tests using same deno executable - const args = [ - Deno.execPath(), - "run", - "--no-prompt", - ...cliPerms, - "cli/js/unit_tests.ts" - ]; + const args = [Deno.execPath(), "run", ...cliPerms, "cli/js/unit_tests.ts"]; const p = Deno.run({ args, |