summaryrefslogtreecommitdiff
path: root/test/test_deno_executable_detection.vader
diff options
context:
space:
mode:
authorMohammed Chelouti <70812484+motato1@users.noreply.github.com>2020-12-27 01:18:53 +0100
committerMohammed Chelouti <70812484+motato1@users.noreply.github.com>2021-01-22 19:06:52 +0100
commit4f2666265a09cceac2e4091dc871107e418f1f67 (patch)
tree2511652bf33e4f83dbbf20b0760cbd68f45002ef /test/test_deno_executable_detection.vader
parent33f2f8ddcd9d934c6eef0dc3bf6c434d00aaa734 (diff)
downloadale-4f2666265a09cceac2e4091dc871107e418f1f67.zip
feat: Add Deno fmt fixer
Diffstat (limited to 'test/test_deno_executable_detection.vader')
-rw-r--r--test/test_deno_executable_detection.vader19
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(''))
+