1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore(tests): reduce the use of --unstable flag in test util (#25443)

This commit is contained in:
Yoshiya Hinosawa 2024-09-05 18:34:12 +09:00 committed by GitHub
parent 5dc907df87
commit b01578ae1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {