summaryrefslogtreecommitdiff
path: root/test/fixers
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-09-11 21:53:45 +0100
committerw0rp <devw0rp@gmail.com>2017-09-11 21:53:45 +0100
commit8eb99c3cec582d15b32cc0741952fb41b504b0da (patch)
tree5104db9f3f42b80b87c3caf821515b2fd62c1653 /test/fixers
parentb6a487ccf9318e449a85bd5b43d7a81b9d17d2be (diff)
downloadale-8eb99c3cec582d15b32cc0741952fb41b504b0da.zip
Fix #922 - Prefer nearer ESLint configuration files with lower precedence filenames for eslint --fix
Diffstat (limited to 'test/fixers')
-rw-r--r--test/fixers/test_eslint_fixer_callback.vader14
1 files changed, 6 insertions, 8 deletions
diff --git a/test/fixers/test_eslint_fixer_callback.vader b/test/fixers/test_eslint_fixer_callback.vader
index 218461db..035f67e3 100644
--- a/test/fixers/test_eslint_fixer_callback.vader
+++ b/test/fixers/test_eslint_fixer_callback.vader
@@ -17,18 +17,16 @@ 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')
-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': ale#Escape('node.exe') . ' '
- \ . 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'))
+ \ '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/subdir-with-config/.eslintrc'))
\ . ' --fix %t',
\ },
\ ale#fixers#eslint#Fix(bufnr(''))