summaryrefslogtreecommitdiff
path: root/tests/specs/check/workspace/__test__.jsonc
blob: 5df2fd70ec6383520094ecea3a900d1a013ad36f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "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
    }
  }
}