This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/command_callback/test_tslint_command_callback.vader

28 lines
869 B
Text
Raw Normal View History

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')) . ' && '
2018-07-06 21:46:36 +00:00
\ . 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')) . ' && '
2018-03-18 16:48:28 +00:00
\ . ale#Escape('tslint') . ' --format json'
\ . ' -r ' . ale#Escape('/foo/bar')
2018-07-06 21:46:36 +00:00
\ . ' %t'
2018-03-18 16:48:28 +00:00
Execute(The executable should be configurable and escaped):
let b:ale_typescript_tslint_executable = 'foo bar'
AssertLinter 'foo bar',
2018-03-18 16:48:28 +00:00
\ 'cd ' . ale#Escape(expand('%:p:h')) . ' && '
2018-07-06 21:46:36 +00:00
\ . ale#Escape('foo bar') . ' --format json %t'