diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-02-25 14:33:09 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 14:33:09 +1100 |
commit | 097e9c44f4d4c7daae7d8113c391bd24d29e7119 (patch) | |
tree | dd6b8bd34c9e762f42eadc59ebcfcbca7e4faf43 /cli/tests/integration_tests.rs | |
parent | 90e4c5dcde99c5f0a1aaa18c0ad786613174085b (diff) |
feat(runtime): stabilise permissions and add event target capabilities (#9573)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index f9f458016..497028cd1 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2677,7 +2677,7 @@ console.log("finish"); #[cfg(unix)] #[test] fn _061_permissions_request() { - let args = "run --unstable 061_permissions_request.ts"; + let args = "run 061_permissions_request.ts"; let output = "061_permissions_request.ts.out"; let input = b"g\nd\n"; @@ -2687,7 +2687,7 @@ console.log("finish"); #[cfg(unix)] #[test] fn _062_permissions_request_global() { - let args = "run --unstable 062_permissions_request_global.ts"; + let args = "run 062_permissions_request_global.ts"; let output = "062_permissions_request_global.ts.out"; let input = b"g\n"; @@ -2695,13 +2695,12 @@ console.log("finish"); } itest!(_063_permissions_revoke { - args: "run --unstable --allow-read=foo,bar 063_permissions_revoke.ts", + args: "run --allow-read=foo,bar 063_permissions_revoke.ts", output: "063_permissions_revoke.ts.out", }); itest!(_064_permissions_revoke_global { - args: - "run --unstable --allow-read=foo,bar 064_permissions_revoke_global.ts", + args: "run --allow-read=foo,bar 064_permissions_revoke_global.ts", output: "064_permissions_revoke_global.ts.out", }); |