Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bstaletic committed Feb 4, 2024
1 parent 96cbf0c commit 38c1148
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/hover.test.vim
Expand Up @@ -483,6 +483,15 @@ function! Test_Long_Wrapped()
call popup_clear()
endfunction

function! SetUp_Test_Long_Scrolling()
let g:old_ycm_auto_hover = g:ycm_auto_hover
let g:ycm_auto_hover = 'CursorHold'
endfunction

function! TearDown_Test_Long_Scrolling()
let g:ycm_auto_hover = g:old_ycm_auto_hover
endfunction

function! Test_Long_Scrolling()
let f = tempname() . '.cc'
execut 'edit' f
Expand Down

0 comments on commit 38c1148

Please sign in to comment.