summaryrefslogtreecommitdiff
path: root/tests/unit/files_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/files_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/files_test.ts')
-rw-r--r--tests/unit/files_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/files_test.ts b/tests/unit/files_test.ts
index b39b5f417..c79397109 100644
--- a/tests/unit/files_test.ts
+++ b/tests/unit/files_test.ts
@@ -929,7 +929,7 @@ function runFlockTestProcess(opts: { exclusive: boolean; sync: boolean }) {
`;
const process = new Deno.Command(Deno.execPath(), {
- args: ["eval", "--unstable", scriptText],
+ args: ["eval", scriptText],
stdin: "piped",
stdout: "piped",
stderr: "null",