Skip to content

Commit 9986e9c

Browse files
committed
chore: Run all move tests.
1 parent 52b7aed commit 9986e9c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/webdriverio/test/move_test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
idle,
2121
} from './test_setup.js';
2222

23-
suite('Move start tests', function () {
23+
suite.only('Move start tests', function () {
2424
// Increase timeout to 10s for this longer test (but disable
2525
// timeouts if when non-zero PAUSE_TIME is used to watch tests) run.
2626
this.timeout(PAUSE_TIME ? 0 : 10000);
@@ -109,7 +109,7 @@ suite('Move start tests', function () {
109109
// a stack heal (really: unary operator chain heal) will NOT occur.
110110
//
111111
// Also tests initiating a move via the context menu.
112-
test.only('Start moving value blocks', async function () {
112+
test('Start moving value blocks', async function () {
113113
for (let i = 1; i < 7; i++) {
114114
// Navigate to statement_<i>.
115115
await focusOnBlock(this.browser, `value_${i}`);
@@ -186,7 +186,7 @@ suite('Move start tests', function () {
186186
});
187187
});
188188

189-
suite('Statement move tests', function () {
189+
suite.only('Statement move tests', function () {
190190
// Increase timeout to 10s for this longer test (but disable
191191
// timeouts if when non-zero PAUSE_TIME is used to watch tests) run.
192192
this.timeout(PAUSE_TIME ? 0 : 10000);
@@ -371,7 +371,7 @@ suite('Statement move tests', function () {
371371
});
372372
});
373373

374-
suite(`Value expression move tests`, function () {
374+
suite.only(`Value expression move tests`, function () {
375375
// Increase timeout to 10s for this longer test (but disable
376376
// timeouts if when non-zero PAUSE_TIME is used to watch tests) run.
377377
this.timeout(PAUSE_TIME ? 0 : 10000);

0 commit comments

Comments
 (0)