File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ import * as Blockly from 'blockly/core';
99import { PAUSE_TIME , testFileLocations , testSetup } from './test_setup.js' ;
1010
1111suite ( 'HTML toasts' , function ( ) {
12+ // Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
13+ if ( PAUSE_TIME ) this . timeout ( 0 ) ;
14+
1215 // Clear the workspace and load start blocks.
1316 setup ( async function ( ) {
1417 this . browser = await testSetup ( testFileLocations . BASE ) ;
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ import {
2323import { Key } from 'webdriverio' ;
2424
2525suite ( 'Workspace comment navigation' , function ( ) {
26+ // Disable timeouts when non-zero PAUSE_TIME is used to watch tests run.
27+ if ( PAUSE_TIME ) this . timeout ( 0 ) ;
28+
2629 // Clear the workspace and load start blocks.
2730 setup ( async function ( ) {
2831 this . browser = await testSetup ( testFileLocations . NAVIGATION_TEST_BLOCKS ) ;
You can’t perform that action at this time.
0 commit comments