summaryrefslogtreecommitdiff
path: root/tests/specs/install/future_install_local_deno/__test__.jsonc
blob: d257fbc1ff3a7e5ef6dd4e615cc75636c395788b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "tempDir": true,
  "steps": [
    {
      "args": "install --allow-import",
      "output": "install.out"
    },
    {
      // ensure deps are actually cached
      "args": "run --cached-only --allow-import main.js",
      "output": ""
    },
    {
      // check for lockfile
      "args": [
        "eval",
        "console.log(Deno.readTextFileSync('./deno.lock').trim())"
      ],
      "output": "deno.lock.out"
    }
  ]
}