summaryrefslogtreecommitdiff
path: root/test/test_flow_command.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-07-10 21:44:51 +0100
committerw0rp <devw0rp@gmail.com>2017-07-10 21:44:51 +0100
commit29d0a20dc3657d046b98cbbfe08014a38f5fc378 (patch)
tree01c3f4f1e05cd3617be43c7a4569f8e649fc1ad2 /test/test_flow_command.vader
parent751d965265c087a582e8e89bdec1ebcb018a7d6a (diff)
downloadale-29d0a20dc3657d046b98cbbfe08014a38f5fc378.zip
Fix the flow command tests so they will run on my machine
Diffstat (limited to 'test/test_flow_command.vader')
-rw-r--r--test/test_flow_command.vader11
1 files changed, 5 insertions, 6 deletions
diff --git a/test/test_flow_command.vader b/test/test_flow_command.vader
index f45c93c2..d9842869 100644
--- a/test/test_flow_command.vader
+++ b/test/test_flow_command.vader
@@ -1,18 +1,18 @@
Before:
runtime ale_linters/javascript/flow.vim
+ call ale#test#SetDirectory('/testplugin/test')
After:
+ call ale#test#RestoreDirectory()
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
+ call ale#test#SetFilename('flow/a/sub/dummy')
AssertEqual '''flow'' check-contents --respect-pragma --json --from ale %s', ale_linters#javascript#flow#GetCommand(bufnr('%'), [])
Execute(flow should should not use --respect-pragma for old versions):
- silent! cd /testplugin/test
- :e! flow/a/sub/dummy
+ call ale#test#SetFilename('flow/a/sub/dummy')
AssertEqual
\ '''flow'' check-contents --json --from ale %s',
@@ -22,7 +22,6 @@ Execute(flow should should not use --respect-pragma for old versions):
\ ])
Execute(flow should not return a command to run if no .flowconfig file exists):
- silent! cd /testplugin/test
- :e! flow/b/sub/dummy
+ call ale#test#SetFilename('flow/b/sub/dummy')
AssertEqual '', ale_linters#javascript#flow#GetCommand(bufnr('%'), [])