1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-11 01:58:05 -05:00
denoland-deno/tests/specs/run/top_level_await/__test__.jsonc
Leo Kettmeir 42b71d82db
chore(lint): add .out file reference checker (#27078)
Co-authored-by: David Sherret <dsherret@gmail.com>
2024-11-26 20:53:20 -08:00

42 lines
1.1 KiB
Text

{
"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
}
}
}