diff options
author | w0rp <devw0rp@gmail.com> | 2017-09-12 09:10:26 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-09-12 09:10:37 +0100 |
commit | 661ed6e40be961d454c30be3ccaff950f907cf60 (patch) | |
tree | 2ee2551f727cdb26c6f24365a51fa1a3e24c74d2 /test/fixers | |
parent | a7614d950208a004cb174e79e55eb4fdc988c24e (diff) | |
download | ale-661ed6e40be961d454c30be3ccaff950f907cf60.zip |
Fix #923 Use package.json as a last resort for eslint --fix
Diffstat (limited to 'test/fixers')
-rw-r--r-- | test/fixers/test_eslint_fixer_callback.vader | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/test/fixers/test_eslint_fixer_callback.vader b/test/fixers/test_eslint_fixer_callback.vader index 035f67e3..e6f79abe 100644 --- a/test/fixers/test_eslint_fixer_callback.vader +++ b/test/fixers/test_eslint_fixer_callback.vader @@ -17,7 +17,7 @@ Execute(The path to eslint.js should be run on Unix): \ . ' --fix %t', \ }, \ ale#fixers#eslint#Fix(bufnr('')) - \ + Execute(The lower priority configuration file in a nested directory should be preferred): call ale#test#SetFilename('../eslint-test-files/react-app/subdir-with-config/testfile.js') @@ -30,3 +30,28 @@ Execute(The lower priority configuration file in a nested directory should be pr \ . ' --fix %t', \ }, \ ale#fixers#eslint#Fix(bufnr('')) + +Execute(package.json should be used as a last resort): + call ale#test#SetFilename('../eslint-test-files/react-app/subdir-with-package-json/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('')) + + call ale#test#SetFilename('../eslint-test-files/package.json') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': + \ ale#Escape(simplify(g:dir . '/../eslint-test-files/node_modules/.bin/eslint')) + \ . ' --config ' . ale#Escape(simplify(g:dir . '/../eslint-test-files/package.json')) + \ . ' --fix %t', + \ }, + \ ale#fixers#eslint#Fix(bufnr('')) |