Skip to content

Commit

Permalink
🪟 🔧 Increase jest timeouts (#22507)
Browse files Browse the repository at this point in the history
* Increase jest timeouts

* Increase timeout
  • Loading branch information
timroes authored Feb 7, 2023
1 parent 9709adf commit dfd5429
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jest.mock("services/workspaces/WorkspacesService", () => ({
useCurrentWorkspaceId: () => "workspace-id",
}));

jest.setTimeout(20000);

describe("CreateConnectionForm", () => {
const Wrapper: React.FC<React.PropsWithChildren<unknown>> = ({ children }) => <TestWrapper>{children}</TestWrapper>;
const render = async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jest.mock("../ConnectorDocumentationLayout/DocumentationPanelContext", () => {
};
});

jest.setTimeout(10000);
jest.setTimeout(20000);

const connectorDefinition = {
sourceDefinitionId: "1",
Expand Down

0 comments on commit dfd5429

Please sign in to comment.