Files
element-web/test/unit-tests/settings/controllers/SystemFontController-test.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-03-25 17:50:17 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2022-03-25 17:50:17 +01:00
Copyright 2022 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2022-03-25 17:50:17 +01:00
*/
2024-10-15 14:57:26 +01:00
import { Action } from "../../../../src/dispatcher/actions";
import dis from "../../../../src/dispatcher/dispatcher";
import SystemFontController from "../../../../src/settings/controllers/SystemFontController";
import SettingsStore from "../../../../src/settings/SettingsStore";
2022-03-25 17:50:17 +01:00
const dispatchSpy = jest.spyOn(dis, "dispatch");
describe("SystemFontController", () => {
2023-11-23 13:04:05 +00:00
it("dispatches a system font update action on change", () => {
2022-03-25 17:50:17 +01:00
const controller = new SystemFontController();
2024-12-23 20:25:15 +00:00
const getValueSpy = jest.spyOn(SettingsStore, "getValue").mockImplementation((settingName): any => {
2023-11-23 13:04:05 +00:00
if (settingName === "useBundledEmojiFont") return false;
if (settingName === "useSystemFont") return true;
if (settingName === "systemFont") return "Comic Sans MS";
});
controller.onChange();
2022-03-25 17:50:17 +01:00
expect(dispatchSpy).toHaveBeenCalledWith({
action: Action.UpdateSystemFont,
2023-11-23 13:04:05 +00:00
useBundledEmojiFont: false,
2022-03-25 17:50:17 +01:00
useSystemFont: true,
2023-11-23 13:04:05 +00:00
font: "Comic Sans MS",
2022-03-25 17:50:17 +01:00
});
expect(getValueSpy).toHaveBeenCalledWith("useSystemFont");
});
});