ale/test/linter/test_xots.vader

24 lines
762 B
Plaintext
Raw Normal View History

2020-04-08 22:59:17 +00:00
Before:
call ale#assert#SetUpLinterTest('typescript', 'xo')
2021-01-20 05:08:10 +00:00
call ale#test#SetFilename('testfile.tsx')
2020-04-08 22:59:17 +00:00
unlet! b:executable
2021-01-20 05:08:10 +00:00
set filetype=typescriptreact
2020-04-08 22:59:17 +00:00
runtime autoload/ale/handlers/xo.vim
After:
call ale#assert#TearDownLinterTest()
Execute(The XO executable should be called):
AssertLinter 'xo', ale#Escape('xo') . ' --reporter json --stdin --stdin-filename %s'
Execute(The XO executable should be configurable):
let b:ale_typescript_xo_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . ' --reporter json --stdin --stdin-filename %s'
Execute(The XO options should be configurable):
let b:ale_typescript_xo_options = '--wat'
AssertLinter 'xo', ale#Escape('xo') . ' --wat --reporter json --stdin --stdin-filename %s'