added tests for Standard.js
This commit is contained in:
parent
ca83f11bee
commit
f3fec6685e
@ -11,8 +11,16 @@ endfunction
|
|||||||
function! ale#fixers#standard#Fix(buffer) abort
|
function! ale#fixers#standard#Fix(buffer) abort
|
||||||
let l:executable = ale#fixers#standard#GetExecutable(a:buffer)
|
let l:executable = ale#fixers#standard#GetExecutable(a:buffer)
|
||||||
|
|
||||||
|
if ale#Has('win32') && l:executable =~? 'cmd\.js$'
|
||||||
|
" For Windows, if we detect an standard.js script, we need to execute
|
||||||
|
" it with node, or the file can be opened with a text editor.
|
||||||
|
let l:head = 'node ' . ale#Escape(l:executable)
|
||||||
|
else
|
||||||
|
let l:head = ale#Escape(l:executable)
|
||||||
|
endif
|
||||||
|
|
||||||
return {
|
return {
|
||||||
\ 'command': ale#Escape(l:executable)
|
\ 'command': l:head
|
||||||
\ . ' --fix %t',
|
\ . ' --fix %t',
|
||||||
\ 'read_temporary_file': 1,
|
\ 'read_temporary_file': 1,
|
||||||
\}
|
\}
|
||||||
|
0
test/eslint-test-files/react-app/node_modules/standard/bin/cmd.js
generated
vendored
Normal file
0
test/eslint-test-files/react-app/node_modules/standard/bin/cmd.js
generated
vendored
Normal file
32
test/fixers/test_standard_fixer_callback.vader
Normal file
32
test/fixers/test_standard_fixer_callback.vader
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
Before:
|
||||||
|
call ale#test#SetDirectory('/testplugin/test/fixers')
|
||||||
|
|
||||||
|
After:
|
||||||
|
let g:ale_has_override = {}
|
||||||
|
call ale#test#RestoreDirectory()
|
||||||
|
|
||||||
|
Execute(The path to standard.js should be run on Unix):
|
||||||
|
call ale#test#SetFilename('../eslint-test-files/react-app/subdir/testfile.js')
|
||||||
|
|
||||||
|
AssertEqual
|
||||||
|
\ {
|
||||||
|
\ 'read_temporary_file': 1,
|
||||||
|
\ 'command':
|
||||||
|
\ ale#Escape(simplify(g:dir . '/../eslint-test-files/react-app/node_modules/standard/bin/cmd.js'))
|
||||||
|
\ . ' --fix %t',
|
||||||
|
\ },
|
||||||
|
\ ale#fixers#standard#Fix(bufnr(''))
|
||||||
|
|
||||||
|
Execute(The standard fixer with standard.js should be run with node on Windows):
|
||||||
|
call ale#test#SetFilename('../eslint-test-files/react-app/subdir/testfile.js')
|
||||||
|
let g:ale_has_override['win32'] = 1
|
||||||
|
|
||||||
|
" We have to execute the file with node.
|
||||||
|
AssertEqual
|
||||||
|
\ {
|
||||||
|
\ 'read_temporary_file': 1,
|
||||||
|
\ 'command': 'node '
|
||||||
|
\ . ale#Escape(simplify(g:dir . '/../eslint-test-files/react-app/node_modules/standard/bin/cmd.js'))
|
||||||
|
\ . ' --fix %t',
|
||||||
|
\ },
|
||||||
|
\ ale#fixers#standard#Fix(bufnr(''))
|
Loading…
Reference in New Issue
Block a user