You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
Close any open modals on logout (#12777)
* Close any open modals on logout Split out from https://github.com/matrix-org/matrix-react-sdk/pull/12666 * Add test
This commit is contained in:
@ -16,6 +16,7 @@ limitations under the License.
|
||||
|
||||
import Modal from "../src/Modal";
|
||||
import QuestionDialog from "../src/components/views/dialogs/QuestionDialog";
|
||||
import defaultDispatcher from "../src/dispatcher/dispatcher";
|
||||
|
||||
describe("Modal", () => {
|
||||
test("forceCloseAllModals should close all open modals", () => {
|
||||
@ -29,4 +30,28 @@ describe("Modal", () => {
|
||||
Modal.forceCloseAllModals();
|
||||
expect(Modal.hasDialogs()).toBe(false);
|
||||
});
|
||||
|
||||
test("open modals should be closed on logout", () => {
|
||||
const modal1OnFinished = jest.fn();
|
||||
const modal2OnFinished = jest.fn();
|
||||
|
||||
Modal.createDialog(QuestionDialog, {
|
||||
title: "Test dialog 1",
|
||||
description: "This is a test dialog",
|
||||
button: "Word",
|
||||
onFinished: modal1OnFinished,
|
||||
});
|
||||
|
||||
Modal.createDialog(QuestionDialog, {
|
||||
title: "Test dialog 2",
|
||||
description: "This is a test dialog",
|
||||
button: "Word",
|
||||
onFinished: modal2OnFinished,
|
||||
});
|
||||
|
||||
defaultDispatcher.dispatch({ action: "logout" }, true);
|
||||
|
||||
expect(modal1OnFinished).toHaveBeenCalled();
|
||||
expect(modal2OnFinished).toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user