mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
23 lines
485 B
Text
23 lines
485 B
Text
|
{
|
||
|
"tests": {
|
||
|
"root": {
|
||
|
// todo(dsherret): should be possible to not provide args here
|
||
|
"args": "check package-a/mod.ts package-b/mod.ts",
|
||
|
"output": "root.out",
|
||
|
"exitCode": 1
|
||
|
},
|
||
|
"package_a": {
|
||
|
"args": "check mod.ts",
|
||
|
"cwd": "package-a",
|
||
|
"output": "package_a.out",
|
||
|
"exitCode": 0
|
||
|
},
|
||
|
"package_b": {
|
||
|
"args": "check mod.ts",
|
||
|
"cwd": "package-b",
|
||
|
"output": "package_b.out",
|
||
|
"exitCode": 1
|
||
|
}
|
||
|
}
|
||
|
}
|