Skip to content

Commit f015528

Browse files
committed
chore: Disable first 8 & re-add sub-suite.
1 parent adc0c98 commit f015528

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

test/webdriverio/test/flyout_test.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ suite.only('Toolbox and flyout test', function () {
3939
await checkForFailures(this.browser, this.currentTest!.title, this.currentTest?.state);
4040
});
4141

42-
test('Tab navigating to toolbox should open flyout', async function () {
42+
test.skip('Tab navigating to toolbox should open flyout', async function () {
4343
// Two tabs should navigate to the toolbox (initial element is skipped).
4444
await tabNavigateForward(this.browser);
4545

@@ -50,7 +50,7 @@ suite.only('Toolbox and flyout test', function () {
5050
chai.assert.isTrue(flyoutIsOpen);
5151
});
5252

53-
test('Tab navigating to flyout should auto-select first block', async function () {
53+
test.skip('Tab navigating to flyout should auto-select first block', async function () {
5454
// Three tabs should navigate to the flyout (initial element is skipped).
5555
await tabNavigateForward(this.browser);
5656
await tabNavigateForward(this.browser);
@@ -63,7 +63,7 @@ suite.only('Toolbox and flyout test', function () {
6363
chai.assert.strictEqual(blockId, 'if_block');
6464
});
6565

66-
test('Tab navigating to toolbox then right arrow key should auto-select first block in flyout', async function () {
66+
test.skip('Tab navigating to toolbox then right arrow key should auto-select first block in flyout', async function () {
6767
// Two tabs should navigate to the toolbox (initial element is skipped). One
6868
// right arrow key should select a block on the flyout.
6969
await tabNavigateForward(this.browser);
@@ -77,7 +77,7 @@ suite.only('Toolbox and flyout test', function () {
7777
chai.assert.strictEqual(blockId, 'if_block');
7878
});
7979

80-
test('Keyboard nav to different toolbox category should auto-select first block', async function () {
80+
test.skip('Keyboard nav to different toolbox category should auto-select first block', async function () {
8181
// Two tabs should navigate to the toolbox (initial element is skipped),
8282
// then keys for a different category with a tab to select the flyout.
8383
await tabNavigateForward(this.browser);
@@ -91,7 +91,7 @@ suite.only('Toolbox and flyout test', function () {
9191
chai.assert.strictEqual(blockId, 'text_block');
9292
});
9393

94-
test('Keyboard nav to different toolbox category and block should select different block', async function () {
94+
test.skip('Keyboard nav to different toolbox category and block should select different block', async function () {
9595
// Two tabs should navigate to the toolbox (initial element is skipped),
9696
// then keys for a different category with a tab to select the flyout and
9797
// finally keys to select a different block.
@@ -107,7 +107,7 @@ suite.only('Toolbox and flyout test', function () {
107107
chai.assert.strictEqual(blockId, 'append_text_block');
108108
});
109109

110-
test('Tab navigate away from toolbox restores focus to initial element', async function () {
110+
test.skip('Tab navigate away from toolbox restores focus to initial element', async function () {
111111
// Two tabs should navigate to the toolbox. One tab back should leave it.
112112
await tabNavigateForward(this.browser);
113113
await tabNavigateForward(this.browser);
@@ -122,7 +122,7 @@ suite.only('Toolbox and flyout test', function () {
122122
chai.assert.strictEqual(activeElementId, 'focusableDiv');
123123
});
124124

125-
test('Tab navigate away from toolbox closes flyout', async function () {
125+
test.skip('Tab navigate away from toolbox closes flyout', async function () {
126126
// Two tabs should navigate to the toolbox. One tab back should leave it.
127127
await tabNavigateForward(this.browser);
128128
await tabNavigateForward(this.browser);
@@ -135,7 +135,7 @@ suite.only('Toolbox and flyout test', function () {
135135
chai.assert.isFalse(flyoutIsOpen);
136136
});
137137

138-
test('Tab navigate away from flyout to toolbox and away closes flyout', async function () {
138+
test.skip('Tab navigate away from flyout to toolbox and away closes flyout', async function () {
139139
// Three tabs should navigate to the flyout, and two tabs back should close.
140140
await tabNavigateForward(this.browser);
141141
await tabNavigateForward(this.browser);
@@ -254,7 +254,7 @@ suite.only('Toolbox and flyout test', function () {
254254
chai.assert.isTrue(flyoutIsOpen);
255255
});
256256

257-
suite.skip('Flyout buttons', function () {
257+
suite('Flyout buttons', function () {
258258
setup(async function () {
259259
// New toolbox definition
260260
const toolbox = {

0 commit comments

Comments
 (0)