summaryrefslogtreecommitdiff
path: root/tests/specs/npm/future_node_modules_dir_setting/__test__.jsonc
blob: e9c9bd81dddf0080987a1dac90783504b5127c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "tempDir": true,
  "steps": [{
    // byonm where this fails be
    "args": "run main.ts",
    "output": "failed.out",
    "exitCode": 1
  }, {
    // this should override byonm
    "args": "run --node-modules-dir=none --quiet main.ts",
    "output": "main.out"
  }, {
    // same with this
    "args": "run --node-modules-dir=auto --quiet main.ts",
    "output": "main.out"
  }]
}