0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-21 21:03:16 -05:00
denoland-deno/tests/specs/check/workspace/__test__.jsonc

23 lines
519 B
JSON
Raw Normal View History

{
"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
}
}
}