Skip to content

Commit

Permalink
change test timeout to jest config
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiechayes committed Oct 30, 2023
1 parent 0a1b798 commit ed90cd8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion generator/konfig-integration-tests/jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import type { Config } from "jest";

const config: Config = {
testTimeout: 120_000,
testTimeout: 900_000,
// All imported modules in your tests should be mocked automatically
// automock: false,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import { e2e } from "../util";

test("leap-workflows-sdks", async () => {
await e2e(4010);
}, 900000);
});
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import { e2e } from "../util";

test("python-dataclass-responses", async () => {
await e2e(4011);
}, 900000);
});
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import { e2e } from "../util";

test("python-typeddict-responses", async () => {
await e2e(4012);
}, 900000);
});

0 comments on commit ed90cd8

Please sign in to comment.