Increase timeout for wysiwyg composer test due to wasm being slow in CI (#11267)

pull/28217/head
Michael Telatynski 2023-07-17 09:17:35 +01:00 committed by GitHub
parent 1995a74090
commit 3ccc0fd8df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ describe("SendWysiwygComposer", () => {
customRender(jest.fn(), jest.fn(), false, true);
// Then
expect(await screen.findByTestId("WysiwygComposer")).toBeInTheDocument();
expect(await screen.findByTestId("WysiwygComposer", undefined, { timeout: 5000 })).toBeInTheDocument();
});
it("Should render PlainTextComposer when isRichTextEnabled is at false", async () => {