Skip to content

Commit 8521b6f

Browse files
authored
fix(decdk): set the timeout in the schema tests to 10 seconds. (#2250)
1 parent 382da6a commit 8521b6f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/decdk/test/schema.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ const fixturedir = path.join(__dirname, 'fixture');
99

1010
// tslint:disable:no-console
1111

12+
// JSII often does not complete in the default 5 second Jest timeout
13+
jest.setTimeout(10_000);
14+
1215
let typesys: reflect.TypeSystem;
1316

1417
beforeAll(async () => {

0 commit comments

Comments
 (0)