1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/specs/compile/detect_cjs/__test__.jsonc

28 lines
534 B
Text
Raw Normal View History

{
"tempDir": true,
"steps": [{
"args": "install",
"output": "[WILDCARD]"
}, {
"if": "unix",
"args": "compile --output main main.js",
"output": "compile.out"
}, {
"if": "unix",
"commandName": "./main",
"args": [],
"output": "output.out",
"exitCode": 0
}, {
"if": "windows",
"args": "compile --output main.exe main.js",
"output": "compile.out"
}, {
"if": "windows",
"commandName": "./main.exe",
"args": [],
"output": "output.out",
"exitCode": 0
}]
}