diff options
author | Mahmoud Mostafa <mah@moud.info> | 2017-07-31 02:51:08 +0200 |
---|---|---|
committer | Mahmoud Mostafa <mah@moud.info> | 2017-07-31 02:54:59 +0200 |
commit | eaeb71993f259c5014e22291f6cf08e623c1047b (patch) | |
tree | b6ebe25e40d04e726122f0e5a75b59c8504144c1 /test/fixers | |
parent | 79d4935ccf95166838dff4feaf78467bc5f86096 (diff) | |
download | ale-eaeb71993f259c5014e22291f6cf08e623c1047b.zip |
Add stylelint fixer
Diffstat (limited to 'test/fixers')
-rw-r--r-- | test/fixers/test_stylelint_fixer_callback.vader | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/test/fixers/test_stylelint_fixer_callback.vader b/test/fixers/test_stylelint_fixer_callback.vader new file mode 100644 index 00000000..6c991969 --- /dev/null +++ b/test/fixers/test_stylelint_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 stylelint.js should be run on Unix): + call ale#test#SetFilename('../eslint-test-files/react-app/subdir/testfile.css') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': + \ ale#Escape(simplify(g:dir . '/../eslint-test-files/react-app/node_modules/stylelint/bin/stylelint.js')) + \ . ' --fix %t', + \ }, + \ ale#fixers#stylelint#Fix(bufnr('')) + +Execute(The stylelint fixer with stylelint.js should be run with node on Windows): + call ale#test#SetFilename('../eslint-test-files/react-app/subdir/testfile.css') + 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/stylelint/bin/stylelint.js')) + \ . ' --fix %t', + \ }, + \ ale#fixers#stylelint#Fix(bufnr('')) |