Skip to content

Commit 8499089

Browse files
committed
chore: Skip some of the earlier suites.
1 parent efb5b7d commit 8499089

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

test/webdriverio/test/actions_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const workspaceActionsViaKeyboard = [
8888
{'disabled': true, 'text': isDarwin ? 'Paste ⌘ V' : 'Paste Ctrl + V'},
8989
];
9090

91-
suite.only('Menus test', function () {
91+
suite('Menus test', function () {
9292
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
9393
if (PAUSE_TIME) this.timeout(0);
9494

test/webdriverio/test/basic_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {
2727
} from './test_setup.js';
2828
import {Key} from 'webdriverio';
2929

30-
suite.only('Keyboard navigation on Blocks', function () {
30+
suite('Keyboard navigation on Blocks', function () {
3131
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
3232
if (PAUSE_TIME) this.timeout(0);
3333

@@ -229,7 +229,7 @@ suite.only('Keyboard navigation on Blocks', function () {
229229
});
230230
});
231231

232-
suite.only('Keyboard navigation on Fields', function () {
232+
suite('Keyboard navigation on Fields', function () {
233233
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
234234
if (PAUSE_TIME) this.timeout(0);
235235

test/webdriverio/test/block_comment_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
} from './test_setup.js';
1919
import {Key} from 'webdriverio';
2020

21-
suite.only('Block comment navigation', function () {
21+
suite('Block comment navigation', function () {
2222
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
2323
if (PAUSE_TIME) this.timeout(0);
2424

0 commit comments

Comments
 (0)