diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-07-22 19:33:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-22 19:33:42 +0100 |
commit | 12217480f9c3143fa3d4055067048c141e009c0e (patch) | |
tree | 1dc0b9c65317423f45e3c8c7316bc559815b107b /test/fixers/test_standard_fixer_callback.vader | |
parent | c1998b170cbf503957711746bba6446e9fec855e (diff) | |
parent | f3fec6685ee6831d1202d7f21075ad159de6a9eb (diff) | |
download | ale-12217480f9c3143fa3d4055067048c141e009c0e.zip |
Merge pull request #781 from sumnerevans/standard-fixer
Added fixer for Standard linter
Diffstat (limited to 'test/fixers/test_standard_fixer_callback.vader')
-rw-r--r-- | test/fixers/test_standard_fixer_callback.vader | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/test/fixers/test_standard_fixer_callback.vader b/test/fixers/test_standard_fixer_callback.vader new file mode 100644 index 00000000..934b07b8 --- /dev/null +++ b/test/fixers/test_standard_fixer_callback.vader @@ -0,0 +1,32 @@ +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): + 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': 'node ' + \ . ale#Escape(simplify(g:dir . '/../eslint-test-files/react-app/node_modules/standard/bin/cmd.js')) + \ . ' --fix %t', + \ }, + \ ale#fixers#standard#Fix(bufnr('')) |