summaryrefslogtreecommitdiff
path: root/tests/specs/install/future_install_local_add_deno/__test__.jsonc
blob: 60112d8582416df8ff6e7b36b380022067cc4c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "tempDir": true,
  "steps": [
    {
      "args": "install npm:@denotest/esm-basic",
      "output": "install.out"
    },
    {
      // make sure the dep got cached
      "args": "run --cached-only main.js",
      "output": ""
    },
    {
      "args": [
        "eval",
        "console.log(Deno.readTextFileSync('deno.json').trim())"
      ],
      "output": "deno.json.out"
    }
  ]
}