summaryrefslogtreecommitdiff
path: root/test/command_callback/test_tslint_command_callback.vader
blob: bd8a12ecef93bcc23d72f67d7079682e71a6aeb5 (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
Before:
  call ale#assert#SetUpLinterTest('typescript', 'tslint')
  call ale#test#SetFilename('test.ts')

After:
  call ale#assert#TearDownLinterTest()

Execute(The default tslint command should be correct):
  AssertLinter 'tslint',
  \ 'cd ' . ale#Escape(expand('%:p:h')) . ' && '
  \   . ale#Escape('tslint') . ' --format json %t'

Execute(The rules directory option should be included if set):
  let b:ale_typescript_tslint_rules_dir = '/foo/bar'

  AssertLinter 'tslint',
  \ 'cd ' . ale#Escape(expand('%:p:h')) . ' && '
  \   . ale#Escape('tslint') . ' --format json'
  \   . ' -r ' . ale#Escape('/foo/bar')
  \   . ' %t'

Execute(The executable should be configurable and escaped):
  let b:ale_typescript_tslint_executable = 'foo bar'

  AssertLinter 'foo bar',
  \ 'cd ' . ale#Escape(expand('%:p:h')) . ' && '
  \   . ale#Escape('foo bar') . ' --format json %t'