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:
parent
5dc907df87
commit
b01578ae1f
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue