EditWysiwygComposer-test: wait for the wasm to load in beforeAll (#11904)
parent
6b73700b05
commit
29ed91749e
|
@ -54,10 +54,16 @@ describe("EditWysiwygComposer", () => {
|
|||
);
|
||||
};
|
||||
|
||||
beforeAll(() => {
|
||||
// Load the dynamic import
|
||||
customRender(false).unmount();
|
||||
});
|
||||
beforeAll(
|
||||
async () => {
|
||||
// Load the dynamic import
|
||||
const component = customRender(false);
|
||||
await component.findByRole("textbox");
|
||||
component.unmount();
|
||||
},
|
||||
// it can take a while to load the wasm
|
||||
20000,
|
||||
);
|
||||
|
||||
it("Should not render the component when not ready", async () => {
|
||||
// When
|
||||
|
|
Loading…
Reference in New Issue