Skip to content

Commit ae904c4

Browse files
committed
Increase timeout
1 parent 4fddb47 commit ae904c4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tests/latch/src/debugger.test.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ framework.style(OutputStyle.github);
3131

3232
const 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

3737
const expectDUMP: Expectation[] = [
3838
{'pc': {kind: 'description', value: Description.defined} as Expected<string>},
@@ -313,7 +313,7 @@ integration.test(dumpEventsTest);
313313

314314
const 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

318318
oop.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

Comments
 (0)