Skip to content

Commit

Permalink
increase timeout to try to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarm committed Apr 20, 2021
1 parent f1975d3 commit 47bfcca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/java/synth-app/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions test/python/synth-app/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
})

0 comments on commit 47bfcca

Please sign in to comment.