summaryrefslogtreecommitdiff
path: root/tests/specs/fmt/workspace/__test__.jsonc
blob: 80e3639f9d108bb7c7a1b5136fcdb1724ff958e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "tests": {
    "root_fmt": {
      "tempDir": true,
      "args": "fmt",
      "output": "root_fmt.out"
    },
    "root_check": {
      "args": "fmt --check",
      "exitCode": 1,
      "output": "root_check.out"
    },
    "sub_dir_fmt": {
      "tempDir": true,
      "args": "fmt",
      "cwd": "a",
      "output": "a_fmt.out"
    },
    "subdir_check": {
      "args": "fmt --check",
      "cwd": "a",
      "exitCode": 1,
      "output": "a_check.out"
    }
  }
}