diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_eslint_executable_detection.vader | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/test_eslint_executable_detection.vader b/test/test_eslint_executable_detection.vader index 254150a9..c8c4cc1d 100644 --- a/test/test_eslint_executable_detection.vader +++ b/test/test_eslint_executable_detection.vader @@ -7,6 +7,7 @@ Before: runtime ale_linters/javascript/eslint.vim After: + let g:ale_has_override = {} let g:ale_javascript_eslint_executable = 'eslint' let g:ale_javascript_eslint_use_global = 0 @@ -63,3 +64,14 @@ Execute(eslint_d should be detected correctly): \ ale#handlers#eslint#GetExecutable(bufnr('')) :q + +Execute(eslint.js executables should be run with node on Windows): + silent noautocmd new eslint-test-files/react-app/subdir/testfile.js + let g:ale_has_override['win32'] = 1 + + " We have to execute the file with node. + AssertEqual + \ 'node ''' + \ . g:dir . '/eslint-test-files/react-app/node_modules/eslint/bin/eslint.js' + \ . ''' -f unix --stdin --stdin-filename %s', + \ ale_linters#javascript#eslint#GetCommand(bufnr('')) |