Skip to content

Commit e407c73

Browse files
committed
chore: Increase timeouts.
1 parent 1122f65 commit e407c73

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

test/webdriverio/test/move_test.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import {
2121
} from './test_setup.js';
2222

2323
suite('Move start tests', function () {
24-
// Increase timeout to 10s for this longer test (but disable
25-
// timeouts if when non-zero PAUSE_TIME is used to watch tests) run.
26-
this.timeout(PAUSE_TIME ? 0 : 10000);
24+
// Increase timeout for this longer test (but disable timeouts if when
25+
// non-zero PAUSE_TIME is used to watch tests) run.
26+
this.timeout(PAUSE_TIME ? 0 : 30000);
2727

2828
// Clear the workspace and load start blocks.
2929
setup(async function () {
@@ -187,9 +187,9 @@ suite('Move start tests', function () {
187187
});
188188

189189
suite('Statement move tests', function () {
190-
// Increase timeout to 10s for this longer test (but disable
191-
// timeouts if when non-zero PAUSE_TIME is used to watch tests) run.
192-
this.timeout(PAUSE_TIME ? 0 : 10000);
190+
// Increase timeout for this longer test (but disable timeouts if when
191+
// non-zero PAUSE_TIME is used to watch tests) run.
192+
this.timeout(PAUSE_TIME ? 0 : 30000);
193193

194194
// Clear the workspace and load start blocks.
195195
setup(async function () {
@@ -372,9 +372,9 @@ suite('Statement move tests', function () {
372372
});
373373

374374
suite(`Value expression move tests`, function () {
375-
// Increase timeout to 10s for this longer test (but disable
376-
// timeouts if when non-zero PAUSE_TIME is used to watch tests) run.
377-
this.timeout(PAUSE_TIME ? 0 : 10000);
375+
// Increase timeout for this longer test (but disable timeouts if when
376+
// non-zero PAUSE_TIME is used to watch tests) run.
377+
this.timeout(PAUSE_TIME ? 0 : 30000);
378378

379379
/** Serialized simple reporter value block with no inputs. */
380380
const VALUE_SIMPLE = {

test/webdriverio/test/scroll_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ suite('Scrolling into view', function () {
5757
});
5858

5959
test('Insert scrolls new block into view', async function () {
60-
// Increase timeout to 10s for this longer test.
61-
this.timeout(PAUSE_TIME ? 0 : 10000);
60+
// Increase timeout for this longer test.
61+
this.timeout(PAUSE_TIME ? 0 : 30000);
6262

6363
// setPauseTime(0);
6464
await tabNavigateToWorkspace(this.browser);

0 commit comments

Comments
 (0)