mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
remove --no-prompt flag, fail on missing permissions (#3183)
This commit is contained in:
parent
edd6a90da8
commit
2804ba8674
9 changed files with 68 additions and 199 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue