2023-04-21 01:13:30 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-04-21 01:13:30 +08:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2023-04-21 01:13:30 +08:00
|
|
|
*/
|
|
|
|
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render } from "jest-matrix-react";
|
2023-04-21 01:13:30 +08:00
|
|
|
import React from "react";
|
2023-06-14 20:42:07 +08:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
2023-04-21 01:13:30 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import AppearanceUserSettingsTab from "../../../../../../../src/components/views/settings/tabs/user/AppearanceUserSettingsTab";
|
|
|
|
import { withClientContextRenderOptions, stubClient } from "../../../../../../test-utils";
|
2023-04-21 01:13:30 +08:00
|
|
|
|
|
|
|
describe("AppearanceUserSettingsTab", () => {
|
2023-06-14 20:42:07 +08:00
|
|
|
let client: MatrixClient;
|
|
|
|
|
2023-04-21 01:13:30 +08:00
|
|
|
beforeEach(() => {
|
2023-06-14 20:42:07 +08:00
|
|
|
client = stubClient();
|
2023-04-21 01:13:30 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should render", () => {
|
2023-06-14 20:42:07 +08:00
|
|
|
const { asFragment } = render(<AppearanceUserSettingsTab />, withClientContextRenderOptions(client));
|
2023-04-21 01:13:30 +08:00
|
|
|
expect(asFragment()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|