File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,9 @@ import {
1111 testFileLocations ,
1212 PAUSE_TIME ,
1313 getBlockElementById ,
14- clickBlock , } from './test_setup.js' ;
15- import { Key , ClickOptions , } from 'webdriverio' ;
14+ clickBlock ,
15+ } from './test_setup.js' ;
16+ import { Key , ClickOptions } from 'webdriverio' ;
1617
1718suite ( 'Keyboard navigation' , function ( ) {
1819 // Setting timeout to unlimited as these tests take a longer time to run than most mocha test
Original file line number Diff line number Diff line change @@ -205,7 +205,9 @@ export async function clickBlock(
205205 const block = workspaceSvg . getBlockById ( blockId ) ;
206206 if ( block ) {
207207 // Ensure the block we want to click is within the viewport.
208- workspaceSvg . scrollBoundsIntoView ( block . getBoundingRectangleWithoutChildren ( ) ) ;
208+ workspaceSvg . scrollBoundsIntoView (
209+ block . getBoundingRectangleWithoutChildren ( ) ,
210+ ) ;
209211 for ( const input of block . inputList ) {
210212 for ( const field of input . fieldRow ) {
211213 if ( field instanceof Blockly . FieldLabel ) {
You can’t perform that action at this time.
0 commit comments