diff options
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('%')) |