summaryrefslogtreecommitdiff
path: root/tests/specs/run/import_common_js/__test__.jsonc
blob: 6510dbad7bcd805a5e00c21a2116f1236104058a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "steps": [
    { "args": "run -R index.cjs", "output": "index.out" },
    { "args": "run -R main.ts", "output": "main.out" },
    {
      "args": "run module_error.js",
      "output": "module_error.out",
      "exitCode": 1
    },
    {
      "args": "run exports_error.js",
      "output": "exports_error.out",
      "exitCode": 1
    },
    {
      "args": "run require_error.js",
      "output": "require_error.out",
      "exitCode": 1
    }
  ]
}