diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2024-09-05 18:34:12 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 18:34:12 +0900 |
commit | b01578ae1fc1da65ac38daec31a23c9ef652aa74 (patch) | |
tree | 94cedd0e312b853d7ce3f03039ca96f6c23b576d /tests/unit/test_util.ts | |
parent | 5dc907df87edbb154120f9c28a5cb2ca76702606 (diff) |
chore(tests): reduce the use of `--unstable` flag in test util (#25443)
Diffstat (limited to 'tests/unit/test_util.ts')
-rw-r--r-- | tests/unit/test_util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_util.ts b/tests/unit/test_util.ts index e78afb828..3f41b90a2 100644 --- a/tests/unit/test_util.ts +++ b/tests/unit/test_util.ts @@ -81,7 +81,7 @@ export function execCode3(cmd: string, args: string[]) { } export function execCode2(code: string) { - return execCode3(Deno.execPath(), ["eval", "--unstable", "--no-check", code]); + return execCode3(Deno.execPath(), ["eval", code]); } export function tmpUnixSocketPath(): string { |