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_xo_command_callback.vader

24 lines
762 B
Text
Raw Normal View History

Before:
2020-04-08 22:59:17 +00:00
call ale#assert#SetUpLinterTest('javascript', 'xo')
2021-01-20 05:08:10 +00:00
call ale#test#SetFilename('testfile.jsx')
unlet! b:executable
2021-01-20 05:08:10 +00:00
set filetype=javascriptreact
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):
2020-04-08 22:59:17 +00:00
let b:ale_javascript_xo_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . ' --reporter json --stdin --stdin-filename %s'
Execute(The XO options should be configurable):
2020-04-08 22:59:17 +00:00
let b:ale_javascript_xo_options = '--wat'
AssertLinter 'xo', ale#Escape('xo') . ' --wat --reporter json --stdin --stdin-filename %s'