summaryrefslogtreecommitdiff
path: root/test/linter/test_tslint.vader
blob: 1b291d9f5201d30731e34885926a340a49edc6d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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):
  AssertLinterCwd '%s:h'
  AssertLinter 'tslint', 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',
  \ 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', ale#Escape('foo bar') . ' --format json %t'