summaryrefslogtreecommitdiff
path: root/tests/specs/lint/sloppy_imports_no_incremental_cache/__test__.jsonc
blob: e4596fd212a08ef3eda8d63b0aa7f3e431ed9e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "tempDir": true,
  "steps": [{
    "args": "lint main.ts",
    "output": "Checked 1 file\n"
  }, {
    "args": "lint --unstable-sloppy-imports main.ts",
    "output": "Checked 1 file\n"
  }, {
    "args": [
      "eval",
      "Deno.renameSync('file.js', 'file.ts')"
    ],
    "output": ""
  }, {
    "args": "lint --unstable-sloppy-imports main.ts",
    "output": "fail_js_to_ts.out",
    "exitCode": 1
  }]
}