We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fc397 commit 80a6ddcCopy full SHA for 80a6ddc
1 file changed
test/unit-tests/components/views/elements/AppTile-test.tsx
@@ -117,9 +117,11 @@ describe("AppTile", () => {
117
await RightPanelStore.instance.onReady();
118
});
119
120
- beforeEach(() => {
+ beforeEach(async () => {
121
sdkContext = new SdkContextClass();
122
jest.spyOn(SettingsStore, "getValue").mockRestore();
123
+ // @ts-ignore
124
+ await WidgetMessagingStore.instance.onReady();
125
126
127
it("destroys non-persisted right panel widget on room change", async () => {
0 commit comments