summaryrefslogtreecommitdiff
path: root/tests/specs/install/move_after_install/__test__.jsonc
blob: ff79f49cf239b2bc93babe92a559a6c5de1b4091 (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
27
{
  "tempDir": true,
  "steps": [
    {
      "cwd": "./test-project",
      "args": "install",
      "output": "[WILDCARD]"
    },
    {
      "cwd": "./test-project",
      "args": "run -A main.mjs",
      "output": "5\n"
    },
    {
      "args": [
        "eval",
        "Deno.renameSync('test-project', 'test-project-moved')"
      ],
      "output": ""
    },
    {
      "cwd": "./test-project-moved",
      "args": "run -A main.mjs",
      "output": "5\n"
    }
  ]
}