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

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

25 lines
879 B
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 FontSizeController from "../../../../src/settings/controllers/FontSizeController";
import { SettingLevel } from "../../../../src/settings/SettingLevel";
2022-03-25 17:50:17 +01:00
2023-06-29 11:30:25 +01:00
const dispatchSpy = jest.spyOn(dis, "fire");
2022-03-25 17:50:17 +01:00
describe("FontSizeController", () => {
it("dispatches a font size action on change", () => {
const controller = new FontSizeController();
controller.onChange(SettingLevel.ACCOUNT, "$room:server", 12);
2023-06-29 11:30:25 +01:00
expect(dispatchSpy).toHaveBeenCalledWith(Action.MigrateBaseFontSize);
2022-03-25 17:50:17 +01:00
});
});