mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
32 lines
620 B
Text
32 lines
620 B
Text
|
{
|
||
|
"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"
|
||
|
}]
|
||
|
}
|