summaryrefslogtreecommitdiff
path: root/test/fixers/test_standard_fixer_callback.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-10-01 20:23:41 +0100
committerw0rp <devw0rp@gmail.com>2017-10-01 20:23:41 +0100
commit5091e2de452e493678e236c92b2ca5bb7bc29653 (patch)
tree4fa1e0a06568a6592ce82e0cdc9660d08cc52cdb /test/fixers/test_standard_fixer_callback.vader
parent638ca4208232ab7abe46efa5052403e58dcfc35a (diff)
downloadale-5091e2de452e493678e236c92b2ca5bb7bc29653.zip
Get fixer tests to work on Windows
Diffstat (limited to 'test/fixers/test_standard_fixer_callback.vader')
-rw-r--r--test/fixers/test_standard_fixer_callback.vader21
1 files changed, 3 insertions, 18 deletions
diff --git a/test/fixers/test_standard_fixer_callback.vader b/test/fixers/test_standard_fixer_callback.vader
index 88169bbb..34c752db 100644
--- a/test/fixers/test_standard_fixer_callback.vader
+++ b/test/fixers/test_standard_fixer_callback.vader
@@ -2,31 +2,16 @@ 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):
+Execute(The executable path should be correct):
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': ale#Escape('node.exe') . ' '
- \ . ale#Escape(simplify(g:dir . '/../eslint-test-files/react-app/node_modules/standard/bin/cmd.js'))
+ \ 'command': (has('win32') ? 'node.exe ' : '')
+ \ . ale#Escape(ale#path#Winify(g:dir . '/../eslint-test-files/react-app/node_modules/standard/bin/cmd.js'))
\ . ' --fix %t',
\ },
\ ale#fixers#standard#Fix(bufnr(''))