1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00
denoland-deno/tests/specs/future/unstable_flags/__test__.jsonc
Bartek Iwańczuk 1667e28a15
FUTURE(ext/fs): stabilize file system APIs (#23968)
Closes https://github.com/denoland/deno/issues/23906

---------

Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
2024-05-27 23:43:07 +00:00

20 lines
390 B
Text

{
"steps": [
{
// Notice `--unstable-*` flags are not needed anymore
"args": "run -A main.js",
"output": "main.out",
"envs": {
"DENO_FUTURE": "1"
}
},
{
// Notice `--unstable-*` flags are not needed anymore
"args": "run -A worker.js",
"output": "main.out",
"envs": {
"DENO_FUTURE": "1"
}
}
]
}