summaryrefslogtreecommitdiff
path: root/tests/specs/npm/workspace_conflicting_dep/__test__.jsonc
blob: 1e5d34381a7ede48c471ef2549588e97abef2c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "tempDir": true,
  "tests": {
    "conflicting_deps": {
      "steps": [
        {
          "args": "install",
          "output": "[WILDCARD]"
        },
        {
          "args": "run ./a/index.js",
          "output": "1 + 2 = 3\n"
        },
        {
          "args": "run ./b/index.js",
          "output": "1 + 2 = 3\n"
        }
      ]
    }
  }
}