mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
test: skip flaky tests
This commit is contained in:
parent
3d554b755b
commit
5a5d26b4ab
@ -94,6 +94,7 @@ func Test_buffer_Number()
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_window_Cursor()
|
func Test_window_Cursor()
|
||||||
|
throw 'skipped: flaky '
|
||||||
new
|
new
|
||||||
call setline(1, ['line1', 'line2'])
|
call setline(1, ['line1', 'line2'])
|
||||||
perl $curwin->Cursor(2, 3)
|
perl $curwin->Cursor(2, 3)
|
||||||
@ -104,7 +105,7 @@ func Test_window_Cursor()
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_window_SetHeight()
|
func Test_window_SetHeight()
|
||||||
throw 'skipped: very flaky '
|
throw 'skipped: flaky '
|
||||||
new
|
new
|
||||||
perl $curwin->SetHeight(2)
|
perl $curwin->SetHeight(2)
|
||||||
call assert_equal(2, winheight(0))
|
call assert_equal(2, winheight(0))
|
||||||
|
@ -3223,7 +3223,7 @@ describe('typval.c', function()
|
|||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
describe('lnum()', function()
|
describe('lnum()', function()
|
||||||
itp('works', function()
|
pending('works (skip due to flakiness)', function()
|
||||||
for _, v in ipairs({
|
for _, v in ipairs({
|
||||||
{ lib.VAR_NUMBER, { v_number = 42 }, nil, 42 },
|
{ lib.VAR_NUMBER, { v_number = 42 }, nil, 42 },
|
||||||
{ lib.VAR_STRING, { v_string = to_cstr('100500') }, nil, 100500 },
|
{ lib.VAR_STRING, { v_string = to_cstr('100500') }, nil, 100500 },
|
||||||
|
Loading…
Reference in New Issue
Block a user