0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-21 04:42:51 -05:00
denoland-deno/tests/specs/check/workspace/__test__.jsonc
David Sherret 4648fc4570
fix(check): compiler options from workspace members (#27785)
Co-authored-by: Nayeem Rahman <nayeemrmn99@gmail.com>
2025-01-28 10:49:58 -05:00

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