diff options
author | Mohammed Chelouti <70812484+motato1@users.noreply.github.com> | 2020-12-27 01:18:53 +0100 |
---|---|---|
committer | Mohammed Chelouti <70812484+motato1@users.noreply.github.com> | 2021-01-22 19:06:52 +0100 |
commit | 4f2666265a09cceac2e4091dc871107e418f1f67 (patch) | |
tree | 2511652bf33e4f83dbbf20b0760cbd68f45002ef /test | |
parent | 33f2f8ddcd9d934c6eef0dc3bf6c434d00aaa734 (diff) | |
download | ale-4f2666265a09cceac2e4091dc871107e418f1f67.zip |
feat: Add Deno fmt fixer
Diffstat (limited to 'test')
-rw-r--r-- | test/test_deno_executable_detection.vader | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/test_deno_executable_detection.vader b/test/test_deno_executable_detection.vader new file mode 100644 index 00000000..edd408b1 --- /dev/null +++ b/test/test_deno_executable_detection.vader @@ -0,0 +1,19 @@ +Before: + runtime autoload/ale/handlers/deno.vim + +After: + unlet! g:ale_deno_executable + + call ale#linter#Reset() + +Execute(Default executable should be detected correctly): + AssertEqual + \ 'deno', + \ ale#handlers#deno#GetExecutable(bufnr('')) + +Execute(User specified executable should override default): + let g:ale_deno_executable = '/path/to/deno-bin' + AssertEqual + \ '/path/to/deno-bin', + \ ale#handlers#deno#GetExecutable(bufnr('')) + |