@@ -31,8 +31,8 @@ framework.style(OutputStyle.github);
3131
3232const integration : Suite = framework . suite ( 'Integration tests: Debugger' ) ; // must be called first
3333
34- integration . testee ( 'emulator [:8500]' , new EmulatorSpecification ( 8500 ) ) ;
35- //integration.testee('esp wrover', new ArduinoSpecification('/dev/ttyUSB0', 'esp32:esp32:esp32wrover'), new HybridScheduler(), {timeout: 0});
34+ integration . testee ( 'emulator [:8500]' , new EmulatorSpecification ( 8500 ) , { timeout : 4000 } ) ;
35+ //integration.testee('esp wrover', new ArduinoSpecification('/dev/ttyUSB0', 'esp32:esp32:esp32wrover'), {timeout: 0});
3636
3737const expectDUMP : Expectation [ ] = [
3838 { 'pc' : { kind : 'description' , value : Description . defined } as Expected < string > } ,
@@ -313,7 +313,7 @@ integration.test(dumpEventsTest);
313313
314314const oop = framework . suite ( 'Test Out-of-place primitives' ) ;
315315
316- oop . testee ( 'supervisor[:8100] - proxy[:8150]' , new OutofPlaceSpecification ( 8100 , 8150 ) ) ;
316+ oop . testee ( 'supervisor[:8100] - proxy[:8150]' , new OutofPlaceSpecification ( 8100 , 8150 ) , { timeout : 4000 } ) ;
317317
318318oop . test ( {
319319 title : `Test store primitive` ,
@@ -362,4 +362,5 @@ oop.test({
362362 ]
363363} ) ;
364364
365- framework . run ( [ integration , oop ] ) ;
365+ framework . run ( [ integration , oop ] ) . then ( ( ) => process . exit ( 0 ) ) ;
366+
0 commit comments