diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-11-12 18:33:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-12 18:33:16 +0000 |
commit | 3948638dbeb34f638bb54ac519ed1863eeec6731 (patch) | |
tree | e48e82389a14e4cf5bab24455cdf12d83c6d04a7 | |
parent | d30da203b91345b472e5d83f048bd42a6ca13804 (diff) | |
parent | 1f4dbb82ec12f0f56cc2e33558023e42e097fa5f (diff) | |
download | ale-3948638dbeb34f638bb54ac519ed1863eeec6731.zip |
Merge pull request #2069 from meain/fixer-prettier-html-tests
add tests for prettier-html
-rw-r--r-- | test/fixers/test_prettier_fixer_callback.vader | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/fixers/test_prettier_fixer_callback.vader b/test/fixers/test_prettier_fixer_callback.vader index 3697e87c..7f25471b 100644 --- a/test/fixers/test_prettier_fixer_callback.vader +++ b/test/fixers/test_prettier_fixer_callback.vader @@ -236,6 +236,20 @@ Execute(Should set --parser based on filetype, YAML): \ }, \ ale#fixers#prettier#ApplyFixForVersion(bufnr(''), ['1.6.0']) +Execute(Should set --parser based on filetype, HTML): + call ale#test#SetFilename('../prettier-test-files/testfile') + + set filetype=html + + AssertEqual + \ { + \ 'command': ale#path#CdString(expand('%:p:h')) + \ . ale#Escape(g:ale_javascript_prettier_executable) + \ . ' --parser html' + \ . ' --stdin-filepath %s --stdin', + \ }, + \ ale#fixers#prettier#ApplyFixForVersion(bufnr(''), ['1.6.0']) + Execute(Should set --parser based on first filetype of multiple filetypes): call ale#test#SetFilename('../prettier-test-files/testfile') |