From 47bfccac0cb844723a7cea53f8d225dde5eabf99 Mon Sep 17 00:00:00 2001 From: Ansgar Mertens Date: Tue, 20 Apr 2021 20:48:18 +0200 Subject: [PATCH] increase timeout to try to fix tests --- test/java/synth-app/test.ts | 2 +- test/python/synth-app/test.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/java/synth-app/test.ts b/test/java/synth-app/test.ts index 7fefa20292..c6b216693a 100644 --- a/test/java/synth-app/test.ts +++ b/test/java/synth-app/test.ts @@ -7,7 +7,7 @@ import { TestDriver } from "../../test-helper"; describe("java full integration", () => { let driver: TestDriver; - jest.setTimeout(60_000); + jest.setTimeout(120_000); beforeAll(async () => { driver = new TestDriver(__dirname) diff --git a/test/python/synth-app/test.ts b/test/python/synth-app/test.ts index 0f94c61751..17ed46c1e7 100644 --- a/test/python/synth-app/test.ts +++ b/test/python/synth-app/test.ts @@ -11,10 +11,10 @@ describe("python full integration test synth", () => { beforeAll(async () => { driver = new TestDriver(__dirname) await driver.setupPythonProject() - }, 120_000); + }, 180_000); test("synth generates JSON", async () => { await driver.synth() expect(driver.synthesizedStack()).toMatchSnapshot() - }, 60_000); + }, 180_000); }) \ No newline at end of file