Fix #468 - Add a cool down period for when things go wrong
This commit is contained in:
18
test/test_lint_error_delay.vader
Normal file
18
test/test_lint_error_delay.vader
Normal file
@@ -0,0 +1,18 @@
|
||||
Before:
|
||||
Save g:ale_filetype_blacklist
|
||||
|
||||
" Delete some variable which should be defined.
|
||||
unlet! g:ale_filetype_blacklist
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
call ale#ResetErrorDelays()
|
||||
|
||||
Execute(ALE should stop queuing for a while after exceptions are thrown):
|
||||
AssertThrows call ale#Queue(100)
|
||||
call ale#Queue(100)
|
||||
|
||||
Execute(ALE should stop linting for a while after exceptions are thrown):
|
||||
AssertThrows call ale#Lint()
|
||||
call ale#Lint()
|
||||
Reference in New Issue
Block a user