mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
448fe67b7a
Includes: * https://github.com/denoland/deno_graph/pull/486 * https://github.com/denoland/deno_graph/pull/488 * https://github.com/denoland/deno_lockfile/pull/25 * https://github.com/denoland/deno_lockfile/pull/22 * https://github.com/denoland/deno_graph/pull/483 * https://github.com/denoland/deno_graph/pull/470
40 lines
800 B
Text
40 lines
800 B
Text
{
|
|
"tests": {
|
|
"info": {
|
|
"args": "info main.ts",
|
|
"output": "fail.out",
|
|
"exitCode": 10
|
|
},
|
|
"info_no_lock": {
|
|
"args": "info --no-lock main.ts",
|
|
"output": "info.nolock.out"
|
|
},
|
|
"bench": {
|
|
"args": "bench",
|
|
"output": "fail.out",
|
|
"exitCode": 10
|
|
},
|
|
"bench_no_lock": {
|
|
"args": "bench --no-lock",
|
|
"output": "bench.nolock.out"
|
|
},
|
|
"doc": {
|
|
"args": "doc main.ts",
|
|
"exitCode": 10,
|
|
"output": "fail.out"
|
|
},
|
|
"doc_no_lock": {
|
|
"args": "doc --no-lock main.ts",
|
|
"output": "doc.nolock.out"
|
|
},
|
|
"test": {
|
|
"args": "test",
|
|
"exitCode": 10,
|
|
"output": "fail.out"
|
|
},
|
|
"test_no_lock": {
|
|
"args": "test --no-lock",
|
|
"output": "test.nolock.out"
|
|
}
|
|
}
|
|
}
|