diff options
| author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-05-11 13:53:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-11 14:53:45 +0200 |
| commit | 2ba9ccc1ab25e5c631afcbb12b53f4545ca7f750 (patch) | |
| tree | 38edbbacb6682b178e0356bf38fbb1f91cc5fe93 /cli/tests/integration | |
| parent | 20c42286f88d861192f35d272a645d8ab6f15be8 (diff) | |
fix(runtime): `ChildProcess::kill()` doesn't require additional perms (#15339)
Fixes #15217.
Diffstat (limited to 'cli/tests/integration')
| -rw-r--r-- | cli/tests/integration/run_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 26aacc6fd..e6ea85da4 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -3435,6 +3435,11 @@ itest!(test_and_bench_are_noops_in_run { output_str: Some(""), }); +itest!(spawn_kill_permissions { + args: "run --quiet --unstable --allow-run=deno spawn_kill_permissions.ts", + output_str: Some(""), +}); + itest!(followup_dyn_import_resolved { args: "run --unstable --allow-read run/followup_dyn_import_resolves/main.ts", output: "run/followup_dyn_import_resolves/main.ts.out", |
