summaryrefslogtreecommitdiff
path: root/test/linter/test_xots.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/linter/test_xots.vader')
-rw-r--r--test/linter/test_xots.vader23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/linter/test_xots.vader b/test/linter/test_xots.vader
new file mode 100644
index 00000000..cc38ff02
--- /dev/null
+++ b/test/linter/test_xots.vader
@@ -0,0 +1,23 @@
+Before:
+ call ale#assert#SetUpLinterTest('typescript', 'xo')
+ call ale#test#SetFilename('testfile.tsx')
+ unlet! b:executable
+
+ set filetype=typescriptreact
+ runtime autoload/ale/handlers/xo.vim
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+Execute(The XO executable should be called):
+ AssertLinter 'xo', ale#Escape('xo') . ' --reporter json --stdin --stdin-filename %s'
+
+Execute(The XO executable should be configurable):
+ let b:ale_typescript_xo_executable = 'foobar'
+
+ AssertLinter 'foobar', ale#Escape('foobar') . ' --reporter json --stdin --stdin-filename %s'
+
+Execute(The XO options should be configurable):
+ let b:ale_typescript_xo_options = '--wat'
+
+ AssertLinter 'xo', ale#Escape('xo') . ' --wat --reporter json --stdin --stdin-filename %s'