summaryrefslogtreecommitdiff
path: root/test/handler/test_jscs_handler.vader
diff options
context:
space:
mode:
authorJonathan Boudreau <jonathan.boudreau.92@gmail.com>2017-07-08 13:37:21 -0400
committerw0rp <w0rp@users.noreply.github.com>2017-07-08 18:37:21 +0100
commit7def00d5a90059b9776e1bf41ea32bd90deb6007 (patch)
treecb80683654da29e82d2c8befd758f9badfe5806c /test/handler/test_jscs_handler.vader
parentdd5806662a96c664953871b726bb1d8add949648 (diff)
downloadale-7def00d5a90059b9776e1bf41ea32bd90deb6007.zip
Use different reporter to support older versions of jscs (#737)
* Use different reporter to support older versions of jscs * Add test and make more consistent with other code * Add documentation for jscs * Add more test coverage
Diffstat (limited to 'test/handler/test_jscs_handler.vader')
-rw-r--r--test/handler/test_jscs_handler.vader25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/handler/test_jscs_handler.vader b/test/handler/test_jscs_handler.vader
new file mode 100644
index 00000000..81e91d8e
--- /dev/null
+++ b/test/handler/test_jscs_handler.vader
@@ -0,0 +1,25 @@
+
+Execute(jscs should parse lines correctly):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 1,
+ \ 'col': 7,
+ \ 'text': 'disallowVar: Variable declarations should use `let` or `const` not `var`',
+ \ },
+ \ {
+ \ 'lnum': 3,
+ \ 'col': 21,
+ \ 'text': 'disallowTrailingWhitespace: Illegal trailing whitespace',
+ \ },
+ \ {
+ \ 'lnum': 5,
+ \ 'col': 9,
+ \ 'text': 'disallowUnusedVariables: Variable `hello` is not used',
+ \ },
+ \ ],
+ \ ale_linters#javascript#jscs#Handle(347, [
+ \ 'foobar.js: line 1, col 7, disallowVar: Variable declarations should use `let` or `const` not `var`',
+ \ 'foobar.js: line 3, col 21, disallowTrailingWhitespace: Illegal trailing whitespace',
+ \ 'foobar.js: line 5, col 9, disallowUnusedVariables: Variable `hello` is not used',
+ \ ])