Make the completion events test fail less
This commit is contained in:
parent
0e71e8b465
commit
3e4db9ed5c
@ -32,8 +32,16 @@ Before:
|
|||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
let g:ale_completion_delay = 0
|
let g:ale_completion_delay = 0
|
||||||
call ale#completion#Queue()
|
|
||||||
sleep 1m
|
" Run this check a few times, as it can fail randomly.
|
||||||
|
for g:i in range(has('nvim-0.3') || has('win32') ? 5 : 1)
|
||||||
|
call ale#completion#Queue()
|
||||||
|
sleep 1m
|
||||||
|
|
||||||
|
if g:get_completions_called is a:expect_success
|
||||||
|
break
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
|
||||||
AssertEqual a:expect_success, g:get_completions_called
|
AssertEqual a:expect_success, g:get_completions_called
|
||||||
endfunction
|
endfunction
|
||||||
|
Loading…
x
Reference in New Issue
Block a user