summaryrefslogtreecommitdiff
path: root/tests/specs/run/package_json/invalid_value/__test__.jsonc
blob: 7f85713cb578fd47ebf003c652e7a577a169f0c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "tempDir": true,
  // TODO(2.0): update the tests, should probably run install first
  "ignore": true,
  "tests": {
    // should run fine when not referencing a failing dep entry
    "run_ok": {
      "args": "run ok.ts",
      "output": "ok.ts.out"
    },
    // should fail when referencing a failing dep entry
    "run_error": {
      "args": "run error.ts",
      "exitCode": 1,
      "output": "error.ts.out"
    },
    // should output a warning about the failing dep entry
    "task_test": {
      "args": "task test",
      "output": "task.out"
    }
  }
}