summaryrefslogtreecommitdiff
path: root/tests/unit/os_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-09-10 12:28:59 +0100
committerGitHub <noreply@github.com>2024-09-10 11:28:59 +0000
commit9a169e3cf11cccec0dd1a6acbfdba927d99658f5 (patch)
tree165fa6f8727891df7c4c826177d7ea24fd121e55 /tests/unit/os_test.ts
parent3f6afd19472c7a13f21b1083d80a563d9359a7ab (diff)
test: remove usage of `--unstable` flag (#25549)
This commit removes all occurrences of `--unstable` flag from all the tests that are run in CI. Turns out none of the tests actually required that flag anymore.
Diffstat (limited to 'tests/unit/os_test.ts')
-rw-r--r--tests/unit/os_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/os_test.ts b/tests/unit/os_test.ts
index 9503f75d1..52aa2ce77 100644
--- a/tests/unit/os_test.ts
+++ b/tests/unit/os_test.ts
@@ -172,7 +172,7 @@ Deno.test(
async function osPpidIsEqualToPidOfParentProcess() {
const decoder = new TextDecoder();
const { stdout } = await new Deno.Command(Deno.execPath(), {
- args: ["eval", "-p", "--unstable", "Deno.ppid"],
+ args: ["eval", "-p", "Deno.ppid"],
env: { NO_COLOR: "true" },
}).output();