summaryrefslogtreecommitdiff
path: root/tests/specs/upgrade/space_in_tmp/__test__.jsonc
blob: f54c0bf83309f055349f96428c42624d4dc8492a (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
28
29
30
{
  "tempDir": true,
  "steps": [
    {
      "args": "eval Deno.copyFileSync(Deno.execPath(),'./deno_copy');",
      "exitCode": 0,
      "output": ""
    },
    {
      "commandName": "mkdir",
      "args": ["space in cwd"],
      "exitCode": 0,
      "output": ""
    },
    {
      "commandName": "./deno_copy",
      "args": "upgrade --force --version 1.43.2",
      "envs": { "TMP": "./space in cwd" },
      "output": "upgrade.out",
      "exitCode": 0,
      "flaky": true
    },
    {
      "commandName": "./deno_copy",
      "args": "--version",
      "exitCode": 0,
      "output": "version.out"
    }
  ]
}