summaryrefslogtreecommitdiff
path: root/test/test_typecheck_handler.vader
blob: 2f8a219b813b3776fb1cf30c1fe657dfd5095f9e (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
31
Execute(The typecheck handler should parse lines correctly):
  runtime ale_linters/typescript/typecheck.vim

  AssertEqual
  \ [
  \   {
  \     'bufnr': 347,
  \     'lnum': 16,
  \     'vcol': 0,
  \     'col': 7,
  \     'text': "Type 'A' is not assignable to type 'B'",
  \     'type': 'E',
  \     'nr': -1,
  \   },
  \   {
  \     'bufnr': 347,
  \     'lnum': 7,
  \     'vcol': 0,
  \     'col': 41,
  \     'text': "Property 'a' does not exist on type 'A'",
  \     'type': 'E',
  \     'nr': -1,
  \   },
  \ ],
  \ ale_linters#typescript#typecheck#Handle(347, [
  \   "somets.ts[16, 7]: Type 'A' is not assignable to type 'B'",
  \   "somets.ts[7, 41]: Property 'a' does not exist on type 'A'",
  \ ])

After:
  call ale#linter#Reset()