diff options
author | w0rp <devw0rp@gmail.com> | 2017-02-10 22:47:56 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-02-10 22:47:56 +0000 |
commit | 49f7ce4f6dbca39a013be6d5714d11a2b882d17c (patch) | |
tree | 7a2335cc70bb7879c9ae4e54a810162ed7ef0dc1 /test/test_flow_command.vader | |
parent | 926cd1a9533a816b0dbd7f6ca2ccbd2cd9cc2399 (diff) | |
download | ale-49f7ce4f6dbca39a013be6d5714d11a2b882d17c.zip |
Fix #246 Don't run flow if there's no .flowconfig
Diffstat (limited to 'test/test_flow_command.vader')
-rw-r--r-- | test/test_flow_command.vader | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/test_flow_command.vader b/test/test_flow_command.vader new file mode 100644 index 00000000..00a2c2a7 --- /dev/null +++ b/test/test_flow_command.vader @@ -0,0 +1,17 @@ +Before: + runtime ale_linters/javascript/flow.vim + +After: + call ale#linter#Reset() + +Execute(flow should return a command to run if a .flowconfig file exists): + silent! cd /testplugin/test + :e! flow/a/sub/dummy + + AssertEqual 'flow check-contents --respect-pragma --json --from ale %s', ale_linters#javascript#flow#GetCommand(bufnr('%')) + +Execute(flow should not return a command to run if no .flowconfig file exists): + silent! cd /testplugin/test + :e! flow/b/sub/dummy + + AssertEqual '', ale_linters#javascript#flow#GetCommand(bufnr('%')) |