@@ -149,7 +149,7 @@ suite.only('Toolbox and flyout test', function () {
149149 chai . assert . isFalse ( flyoutIsOpen ) ;
150150 } ) ;
151151
152- test ( 'Tabbing to the workspace should close the flyout' , async function ( ) {
152+ test . skip ( 'Tabbing to the workspace should close the flyout' , async function ( ) {
153153 await tabNavigateToWorkspace ( this . browser ) ;
154154 await idle ( this . browser ) ;
155155
@@ -158,7 +158,7 @@ suite.only('Toolbox and flyout test', function () {
158158 chai . assert . isFalse ( flyoutIsOpen ) ;
159159 } ) ;
160160
161- test ( 'Tabbing to the workspace after selecting flyout block should close the flyout' , async function ( ) {
161+ test . skip ( 'Tabbing to the workspace after selecting flyout block should close the flyout' , async function ( ) {
162162 // Two tabs should navigate to the toolbox (initial element is skipped),
163163 // then use right key to specifically navigate into the flyout before
164164 // navigating to the workspace.
@@ -174,7 +174,7 @@ suite.only('Toolbox and flyout test', function () {
174174 chai . assert . isFalse ( flyoutIsOpen ) ;
175175 } ) ;
176176
177- test ( 'Tabbing to the workspace after selecting flyout block via workspace toolbox shortcut should close the flyout' , async function ( ) {
177+ test . skip ( 'Tabbing to the workspace after selecting flyout block via workspace toolbox shortcut should close the flyout' , async function ( ) {
178178 await tabNavigateToWorkspace ( this . browser ) ;
179179
180180 await sendKeyAndWait ( this . browser , 't' ) ;
@@ -187,7 +187,7 @@ suite.only('Toolbox and flyout test', function () {
187187 chai . assert . isFalse ( flyoutIsOpen ) ;
188188 } ) ;
189189
190- test ( 'Tabbing back from workspace should reopen the flyout' , async function ( ) {
190+ test . skip ( 'Tabbing back from workspace should reopen the flyout' , async function ( ) {
191191 await tabNavigateToWorkspace ( this . browser ) ;
192192
193193 await tabNavigateBackward ( this . browser ) ;
@@ -198,7 +198,7 @@ suite.only('Toolbox and flyout test', function () {
198198 chai . assert . isTrue ( flyoutIsOpen ) ;
199199 } ) ;
200200
201- test ( 'Navigation position in workspace should be retained when tabbing to flyout and back' , async function ( ) {
201+ test . skip ( 'Navigation position in workspace should be retained when tabbing to flyout and back' , async function ( ) {
202202 // Navigate to the workspace and select a non-default block.
203203 await tabNavigateToWorkspace ( this . browser ) ;
204204
@@ -214,7 +214,7 @@ suite.only('Toolbox and flyout test', function () {
214214 chai . assert . strictEqual ( blockId , 'p5_draw_1' ) ;
215215 } ) ;
216216
217- test ( 'Clicking outside Blockly with focused toolbox closes the flyout' , async function ( ) {
217+ test . skip ( 'Clicking outside Blockly with focused toolbox closes the flyout' , async function ( ) {
218218 // Two tabs should navigate to the toolbox. One click to unfocus.
219219 await tabNavigateForward ( this . browser ) ;
220220 await tabNavigateForward ( this . browser ) ;
@@ -227,7 +227,7 @@ suite.only('Toolbox and flyout test', function () {
227227 chai . assert . isFalse ( flyoutIsOpen ) ;
228228 } ) ;
229229
230- test ( 'Clicking outside Blockly with focused flyout closes the flyout' , async function ( ) {
230+ test . skip ( 'Clicking outside Blockly with focused flyout closes the flyout' , async function ( ) {
231231 // Two tabs should navigate to the toolbox. One key to select the flyout.
232232 await tabNavigateForward ( this . browser ) ;
233233 await tabNavigateForward ( this . browser ) ;
@@ -242,7 +242,7 @@ suite.only('Toolbox and flyout test', function () {
242242 chai . assert . isFalse ( flyoutIsOpen ) ;
243243 } ) ;
244244
245- test ( 'Clicking on toolbox category focuses it and opens flyout' , async function ( ) {
245+ test . skip ( 'Clicking on toolbox category focuses it and opens flyout' , async function ( ) {
246246 const elemId = await findToolboxCategoryIdByName ( this . browser , 'Loops' ) ;
247247 const elem = this . browser . $ ( `#${ elemId } ` ) ;
248248 await elem . click ( ) ;
0 commit comments