mirror of
https://github.com/denoland/deno.git
synced 2025-02-21 04:42:51 -05:00
22 lines
519 B
JSON
22 lines
519 B
JSON
{
|
|
"tests": {
|
|
"root": {
|
|
// todo(dsherret): should be possible to not provide args here
|
|
"args": "check package-a/mod.ts package-b/mod.ts package-c/mod.ts package-d/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
|
|
}
|
|
}
|
|
}
|