Skip to content

Commit 645e839

Browse files
committed
fix(tests): Don't .only away all the other tests
1 parent e249430 commit 645e839

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/webdriverio/test/move_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ suite('Move tests', function () {
3030
// moved, with subsequent statement blocks below it in the stack
3131
// reattached to where the moving block was - i.e., that a stack
3232
// heal will occur.
33-
test.only('Start moving statement blocks', async function () {
33+
test('Start moving statement blocks', async function () {
3434
for (let i = 1; i < 7; i++) {
3535
// Navigate to statement_<i>.
3636
await tabNavigateToWorkspace(this.browser);
@@ -90,7 +90,7 @@ suite('Move tests', function () {
9090
// When a move of a value block begins, it is expected that block
9191
// and all blocks connected to its inputs will be moved - i.e., that
9292
// a stack heal (really: unary operator chain heal) will NOT occur.
93-
test.only('Start moving value blocks', async function () {
93+
test('Start moving value blocks', async function () {
9494
for (let i = 1; i < 7; i++) {
9595
// Navigate to statement_<i>.
9696
await tabNavigateToWorkspace(this.browser);

0 commit comments

Comments
 (0)