summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2018-10-31 11:21:13 +0000
committerGitHub <noreply@github.com>2018-10-31 11:21:13 +0000
commit20e4e3f9db1e46306bbe8ba5c33db92950b2e927 (patch)
tree9e15c0feeefeec349525f78ae47da0d215076d50 /test
parentcdda96154e0bb397b7fa1f1ca04cbcbb28a754f8 (diff)
parent39fd7a09613145fe6799716da3d4158bf0d35092 (diff)
downloadale-20e4e3f9db1e46306bbe8ba5c33db92950b2e927.zip
Merge pull request #2040 from leamingrad/jshint_filename
Pass the filename of the current file into jshint
Diffstat (limited to 'test')
-rw-r--r--test/command_callback/test_jshint_command_callback.vader14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/command_callback/test_jshint_command_callback.vader b/test/command_callback/test_jshint_command_callback.vader
new file mode 100644
index 00000000..d665a9c1
--- /dev/null
+++ b/test/command_callback/test_jshint_command_callback.vader
@@ -0,0 +1,14 @@
+Before:
+ call ale#assert#SetUpLinterTest('javascript', 'jshint')
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+Execute(The default command should be correct):
+
+ AssertLinter 'jshint', '''jshint'' --reporter unix --extract auto --filename %s -'
+
+Execute(Setting a config location should add the config parameter):
+ let g:ale_jshint_config_loc = '/some/file'
+
+ AssertLinter 'jshint', '''jshint'' --reporter unix --extract auto --config ''/some/file'' --filename %s -'