From 2804ba8674150b80ee181cc3869e1fa12de661d3 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Wed, 23 Oct 2019 08:35:43 +0900 Subject: remove --no-prompt flag, fail on missing permissions (#3183) --- cli/js/unit_test_runner.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'cli/js') 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 { 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, -- cgit v1.2.3