1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-14 03:23:17 -05:00
denoland-deno/tests/specs/run/top_level_await/__test__.jsonc

43 lines
1.1 KiB
Text
Raw Normal View History

2024-11-05 01:39:05 -05:00
{
"tests": {
"top_level_for_await": {
"args": "run --quiet top_level_for_await.js",
"output": "top_level_for_await.out"
},
"top_level_for_await_ts": {
"args": "run --quiet top_level_for_await.ts",
"output": "top_level_for_await.out"
},
"top_level_await_unresolved": {
"args": "run unresolved.js",
"output": "unresolved.out",
"exitCode": 1
},
"top_level_await": {
"args": "run --allow-read top_level_await.js",
"output": "top_level_await.out"
},
"top_level_await_ts": {
"args": "run --quiet --allow-read top_level_await.ts",
"output": "top_level_await.out"
},
"top_level_await_order": {
"args": "run --allow-read order.js",
"output": "order.out"
},
"top_level_await_nested": {
"args": "run --allow-read nested/main.js",
"output": "nested.out"
},
"top_level_await_loop": {
"args": "run --allow-read loop.js",
"output": "loop.out"
},
"top_level_await_circular": {
"args": "run --allow-read circular.js",
"output": "circular.out",
"exitCode": 1
}
}
2024-11-05 01:39:05 -05:00
}