summaryrefslogtreecommitdiff
path: root/test/handler/test_tslint_handler.vader
blob: 92ed70594a0c7cd4d8f66304d1075066aaf01627 (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
32
33
34
35
36
37
38
39
40
41
Before:
  runtime ale_linters/typescript/tslint.vim

Execute(The tslint handler should parse lines correctly):
  AssertEqual
  \ [
  \   {
  \     'lnum': 235,
  \     'col': 21,
  \     'text': 'unused expression, expected an assignment or function call',
  \     'type': 'W',
  \   },
  \   {
  \     'lnum': 35,
  \     'col': 6,
  \     'text': 'Missing semicolon',
  \     'type': 'E',
  \   },
  \   {
  \     'lnum': 147,
  \     'col': 10,
  \     'text': 'Unnecessary semicolon',
  \     'type': 'W',
  \   },
  \   {
  \     'lnum': 101,
  \     'col': 25,
  \     'text': 'Unnecessary trailing comma',
  \     'type': 'E',
  \   },
  \ ],
  \ ale_linters#typescript#tslint#Handle(347, [
  \   'This line should be ignored completely',
  \   'WARNING: hello.ts[235, 21]: unused expression, expected an assignment or function call',
  \   'ERROR: hello.ts[35, 6]: Missing semicolon',
  \   'WARNING: hello.ts[147, 10]: Unnecessary semicolon',
  \   'ERROR: hello.ts[101, 25]: Unnecessary trailing comma'
  \ ])

After:
  call ale#linter#Reset()