summaryrefslogtreecommitdiff
path: root/test/fixers/test_xo_fixer_callback.vader
blob: d36fe74c51be67a6d37a23567a112e66952e9e82 (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
28
29
30
31
Before:
  call ale#assert#SetUpFixerTest('javascript', 'xo')
  runtime autoload/ale/handlers/xo.vim
  set filetype=javascript

After:
  call ale#assert#TearDownFixerTest()

Execute(The xo callback should return the correct default values):
  call ale#test#SetFilename('../eslint-test-files/react-app/subdir/testfile.js')

  AssertFixer
  \ {
  \   'read_temporary_file': 1,
  \   'command': (has('win32') ? 'node.exe ' : '')
  \     . ale#Escape(ale#path#Simplify(g:dir . '/../eslint-test-files/react-app/node_modules/xo/cli.js'))
  \     . ' --fix %t',
  \ }

Execute(The xo callback should include custom xo options):
  let g:ale_javascript_xo_options = '--space'
  call ale#test#SetFilename('../eslint-test-files/react-app/subdir/testfile.js')

  AssertFixer
  \ {
  \   'read_temporary_file': 1,
  \   'command': (has('win32') ? 'node.exe ' : '')
  \     . ale#Escape(ale#path#Simplify(g:dir . '/../eslint-test-files/react-app/node_modules/xo/cli.js'))
  \     . ' --fix %t'
  \     . ' --space',
  \ }