From 928f1ef8cef70ab378c36200d14f7e0e2e9e6a85 Mon Sep 17 00:00:00 2001 From: John McLear Date: Wed, 27 Jan 2021 05:23:33 +0000 Subject: [PATCH] more realistic timeouts for slower devices --- tests/frontend/specs/ordered_list.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/frontend/specs/ordered_list.js b/tests/frontend/specs/ordered_list.js index c900235e3..155e92d0d 100644 --- a/tests/frontend/specs/ordered_list.js +++ b/tests/frontend/specs/ordered_list.js @@ -8,7 +8,7 @@ describe('assign ordered list', function () { }); it('inserts ordered list text', function (done) { - this.timeout(100); + this.timeout(200); const inner$ = helper.padInner$; const chrome$ = helper.padChrome$; @@ -56,7 +56,7 @@ describe('assign ordered list', function () { }); it('inserts unordered list', function (done) { - this.timeout(100); + this.timeout(200); helper.waitFor(() => helper.padInner$('div').first().find('ol li').length === 1).done(done); }); }); @@ -129,7 +129,7 @@ describe('Pressing Tab in an OL increases and decreases indentation', function ( }); it('indent and de-indent list item with keypress', function (done) { - this.timeout(100); + this.timeout(200); const inner$ = helper.padInner$; const chrome$ = helper.padChrome$; @@ -164,7 +164,7 @@ describe('Pressing indent/outdent button in an OL increases and decreases indent }); it('indent and de-indent list item with indent button', function (done) { - this.timeout(100); + this.timeout(200); const inner$ = helper.padInner$; const chrome$ = helper.padChrome$;