From b01578ae1fc1da65ac38daec31a23c9ef652aa74 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Thu, 5 Sep 2024 18:34:12 +0900 Subject: chore(tests): reduce the use of `--unstable` flag in test util (#25443) --- tests/unit/test_util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') 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 { -- cgit v1.2.3