summaryrefslogtreecommitdiff
path: root/test/fixers
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-07-18 12:28:20 +0100
committerw0rp <devw0rp@gmail.com>2017-07-18 12:28:20 +0100
commit0931e99ea44387852620985e9dd5707370743784 (patch)
treef037a831cebf33b3305d2db75b22d8a55735ec1d /test/fixers
parenta8a4df05e6e16b81d712530136f651df0db800c9 (diff)
downloadale-0931e99ea44387852620985e9dd5707370743784.zip
Fix #775 - Run eslint.js via node on Windows for eslint --fix
Diffstat (limited to 'test/fixers')
-rw-r--r--test/fixers/test_eslint_fixer_callback.vader34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/fixers/test_eslint_fixer_callback.vader b/test/fixers/test_eslint_fixer_callback.vader
new file mode 100644
index 00000000..58f75611
--- /dev/null
+++ b/test/fixers/test_eslint_fixer_callback.vader
@@ -0,0 +1,34 @@
+Before:
+ call ale#test#SetDirectory('/testplugin/test/fixers')
+
+After:
+ let g:ale_has_override = {}
+ call ale#test#RestoreDirectory()
+
+Execute(The path to eslint.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/eslint/bin/eslint.js'))
+ \ . ' --config ' . ale#Escape(simplify(g:dir . '/../eslint-test-files/react-app/.eslintrc.js'))
+ \ . ' --fix %t',
+ \ },
+ \ ale#fixers#eslint#Fix(bufnr(''))
+
+Execute(The eslint fixer with eslint.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/eslint/bin/eslint.js'))
+ \ . ' --config ' . ale#Escape(simplify(g:dir . '/../eslint-test-files/react-app/.eslintrc.js'))
+ \ . ' --fix %t',
+ \ },
+ \ ale#fixers#eslint#Fix(bufnr(''))