Skip to content

Commit efb5b7d

Browse files
committed
chore: Re-enable previous tests to move.
1 parent 9986e9c commit efb5b7d

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
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('Menus test', function () {
91+
suite.only('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('Keyboard navigation on Blocks', function () {
30+
suite.only('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('Keyboard navigation on Blocks', function () {
229229
});
230230
});
231231

232-
suite('Keyboard navigation on Fields', function () {
232+
suite.only('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('Block comment navigation', function () {
21+
suite.only('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

test/webdriverio/test/clipboard_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {
2323
} from './test_setup.js';
2424
import {Key, KeyAction, PointerAction, WheelAction} from 'webdriverio';
2525

26-
suite('Clipboard test', function () {
26+
suite.only('Clipboard test', function () {
2727
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
2828
if (PAUSE_TIME) this.timeout(0);
2929

test/webdriverio/test/delete_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {
2323
} from './test_setup.js';
2424
import {Key} from 'webdriverio';
2525

26-
suite('Deleting Blocks', function () {
26+
suite.only('Deleting Blocks', function () {
2727
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
2828
if (PAUSE_TIME) this.timeout(0);
2929

test/webdriverio/test/duplicate_test.ts

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

22-
suite('Duplicate test', function () {
22+
suite.only('Duplicate test', function () {
2323
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
2424
if (PAUSE_TIME) this.timeout(0);
2525

test/webdriverio/test/flyout_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
setSynchronizeCoreBlocklyRendering,
2626
} from './test_setup.js';
2727

28-
suite('Toolbox and flyout test', function () {
28+
suite.only('Toolbox and flyout test', function () {
2929
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
3030
if (PAUSE_TIME) this.timeout(0);
3131

test/webdriverio/test/insert_test.ts

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

29-
suite('Insert test', function () {
29+
suite.only('Insert test', function () {
3030
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
3131
if (PAUSE_TIME) this.timeout(0);
3232

@@ -141,7 +141,7 @@ suite('Insert test', function () {
141141
});
142142
});
143143

144-
suite('Insert test with more blocks', function () {
144+
suite.only('Insert test with more blocks', function () {
145145
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
146146
if (PAUSE_TIME) this.timeout(0);
147147

test/webdriverio/test/keyboard_mode_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const isKeyboardNavigating = function (browser: WebdriverIO.Browser) {
2626
});
2727
};
2828

29-
suite(
29+
suite.only(
3030
'Keyboard navigation mode set on mouse or keyboard interaction',
3131
function () {
3232
// Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.

0 commit comments

Comments
 (0)