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/lockfile/no_lock/__test__.jsonc

32 lines
620 B
Text
Raw Normal View History

{
"steps": [{
"args": "info main.ts",
"output": "fail_initial.out",
"exitCode": 10
}, {
"args": "info --no-lock main.ts",
"output": "info.nolock.out"
}, {
"args": "bench",
"output": "fail.out",
"exitCode": 10
}, {
"args": "bench --no-lock",
"output": "bench.nolock.out"
}, {
"args": "doc main.ts",
"exitCode": 10,
"output": "fail.out"
}, {
"args": "doc --no-lock main.ts",
"output": "doc.nolock.out"
}, {
"args": "test",
"exitCode": 10,
"output": "fail.out"
}, {
"args": "test --no-lock",
"output": "test.nolock.out"
}]
}