summaryrefslogtreecommitdiff
path: root/tests/specs/future/import_assertions/__test__.jsonc
blob: 1c55d2220e223545c0c467d78472fdba58bef590 (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
{
  "steps": [
    {
      "args": "run main.js",
      "output": "error.out",
      "exitCode": 1,
      "envs": {
        "DENO_FUTURE": "1"
      }
    },
    // Running the same multiple times, should warn each time.
    {
      "args": "run main.js",
      "output": "error.out",
      "exitCode": 1,
      "envs": {
        "DENO_FUTURE": "1"
      }
    },
    {
      "args": "run main.js",
      "output": "success.out"
    }
  ]
}