diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-12-18 10:19:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-18 10:19:59 +0000 |
commit | 0e3778e335f67a48571bf2b7c5c59c73005efdfa (patch) | |
tree | 5912da948e35c2d2e89940b603881910b4143640 /test | |
parent | 9a3be907ea9a3f1e4646fcf3cef43a3572a7eaa2 (diff) | |
parent | e55d07cf6f8eb71e808e53e43ef7c56f8b660b63 (diff) | |
download | ale-0e3778e335f67a48571bf2b7c5c59c73005efdfa.zip |
Merge pull request #2153 from deltaskelta/gqlint-fix
changed gqlint to lint the file on disk
Diffstat (limited to 'test')
-rw-r--r-- | test/command_callback/test_graphql_gqlint_command_callbacks.vader | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/command_callback/test_graphql_gqlint_command_callbacks.vader b/test/command_callback/test_graphql_gqlint_command_callbacks.vader new file mode 100644 index 00000000..0f4e9770 --- /dev/null +++ b/test/command_callback/test_graphql_gqlint_command_callbacks.vader @@ -0,0 +1,11 @@ +Before: + call ale#assert#SetUpLinterTest('graphql', 'gqlint') + +After: + call ale#assert#TearDownLinterTest() + +Execute(The linter should run from the directory of the file in the buffer): + AssertLinter 'gqlint', + \ ale#path#CdString(expand('%:p:h')) + \ . 'gqlint --reporter=simple' + \ . ' %t' |