Skip to content

Commit 3ee0938

Browse files
committed
Increase compilation timeout threshold
1 parent e52d219 commit 3ee0938

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/framework/Framework.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class Suite {
2727
}
2828

2929
public testee(name: string, specification: TestbedSpecification, options: TesteeOptions = {}) {
30-
const testee = new Testee(name, specification, options.timeout ?? 2000, options.connectionTimout ?? 5000);
30+
const testee = new Testee(name, specification, options.timeout ?? 2000, options.connectionTimout ?? 30000);
3131
if (options.disabled) {
3232
testee.skipall();
3333
}

0 commit comments

Comments
 (0)