1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/specs/run/unstable/__test__.jsonc
Marvin Hagemeister de34c7ed29
feat(cli): add --unstable-node-globals flag (#26617)
This PR adds a new `--unstable-node-globals` flag to expose Node globals
by default.

Fixes https://github.com/denoland/deno/issues/26611

---------

Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2024-11-14 13:11:29 +00:00

34 lines
713 B
Text

{
"tests": {
"broadcast_channel": {
"args": "run broadcast_channel.ts",
"exitCode": 1,
"output": "broadcast_channel.out"
},
"cron": {
"args": "run cron.ts",
"exitCode": 1,
"output": "cron.out"
},
"http_wss": {
"args": "run http_wss.ts",
"exitCode": 1,
"output": "http_wss.out"
},
"kv": {
"args": "run kv.ts",
"exitCode": 1,
"output": "kv.out"
},
"node_globals": {
"args": "run --unstable-node-globals node_globals.ts",
"exitCode": 0,
"output": "node_globals.out"
},
"temporal": {
"args": "run temporal.ts",
"exitCode": 1,
"output": "temporal.out"
}
}
}