2022-08-09 16:14:30 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-08-09 16:14:30 +08:00
|
|
|
Copyright 2022 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.
|
2022-08-09 16:14:30 +08:00
|
|
|
*/
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
import React from "react";
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render } from "jest-matrix-react";
|
2022-08-09 16:14:30 +08:00
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
import SettingsSubsection from "../../../../../src/components/views/settings/shared/SettingsSubsection";
|
2022-08-09 16:14:30 +08:00
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
describe("<SettingsSubsection />", () => {
|
2022-08-09 16:14:30 +08:00
|
|
|
const defaultProps = {
|
2022-12-12 19:24:14 +08:00
|
|
|
heading: "Test",
|
2022-08-09 16:14:30 +08:00
|
|
|
children: <div>test settings content</div>,
|
|
|
|
};
|
2022-12-12 19:24:14 +08:00
|
|
|
const getComponent = (props = {}): React.ReactElement => <SettingsSubsection {...defaultProps} {...props} />;
|
2022-08-09 16:14:30 +08:00
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
it("renders with plain text heading", () => {
|
2022-10-12 02:12:02 +08:00
|
|
|
const { container } = render(getComponent());
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
it("renders with react element heading", () => {
|
2022-10-12 02:12:02 +08:00
|
|
|
const heading = <h3>This is the heading</h3>;
|
|
|
|
const { container } = render(getComponent({ heading }));
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
it("renders without description", () => {
|
2022-08-09 16:14:30 +08:00
|
|
|
const { container } = render(getComponent());
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
it("renders with plain text description", () => {
|
|
|
|
const { container } = render(getComponent({ description: "This describes the subsection" }));
|
2022-08-09 16:14:30 +08:00
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
it("renders with react element description", () => {
|
|
|
|
const description = (
|
|
|
|
<p>
|
|
|
|
This describes the section <a href="/#">link</a>
|
|
|
|
</p>
|
|
|
|
);
|
2022-08-09 16:14:30 +08:00
|
|
|
const { container } = render(getComponent({ description }));
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|