Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.

Commit 8b5c9da

Browse files
committed
Remove stale test
Signed-off-by: Michael Telatynski <[email protected]>
1 parent 2722404 commit 8b5c9da

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

test/stores/right-panel/RightPanelStore-test.ts

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -217,22 +217,4 @@ describe("RightPanelStore", () => {
217217
await viewRoom("!1:example.org");
218218
expect(store.currentCardForRoom("!1:example.org").phase).toEqual(RightPanelPhases.RoomMemberList);
219219
});
220-
221-
it("showOrHidePhase works as expected", async () => {
222-
await viewRoom("!1:example.org");
223-
224-
// Open the memberlist panel
225-
store.showOrHidePhase(RightPanelPhases.RoomMemberList);
226-
expect(store.isOpenForRoom("!1:example.org")).toEqual(true);
227-
expect(store.currentCardForRoom("!1:example.org").phase).toEqual(RightPanelPhases.RoomMemberList);
228-
229-
// showOrHide with RoomSummary should now close the panel
230-
store.showOrHidePhase(RightPanelPhases.RoomSummary);
231-
expect(store.isOpenForRoom("!1:example.org")).toEqual(false);
232-
233-
// showOrHide with RoomSummary should now open the panel
234-
store.showOrHidePhase(RightPanelPhases.RoomSummary);
235-
expect(store.isOpenForRoom("!1:example.org")).toEqual(true);
236-
expect(store.currentCardForRoom("!1:example.org").phase).toEqual(RightPanelPhases.RoomSummary);
237-
});
238220
});

0 commit comments

Comments
 (0)