2022-05-06 17:09:28 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-05-06 17:09:28 +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-05-06 17:09:28 +08:00
|
|
|
*/
|
|
|
|
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render } from "jest-matrix-react";
|
2021-12-15 18:00:10 +08:00
|
|
|
import React from "react";
|
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import Heading from "../../../../../src/components/views/typography/Heading";
|
2021-12-15 18:00:10 +08:00
|
|
|
describe("<Heading />", () => {
|
|
|
|
const defaultProps = {
|
2023-06-29 18:30:25 +08:00
|
|
|
"size": "1",
|
2023-02-22 18:52:55 +08:00
|
|
|
"children": <div>test</div>,
|
|
|
|
"data-testid": "test",
|
|
|
|
"className": "test",
|
2021-12-15 18:00:10 +08:00
|
|
|
} as any;
|
|
|
|
const getComponent = (props = {}) => {
|
2023-02-22 18:52:55 +08:00
|
|
|
return render(<Heading {...defaultProps} {...props} />);
|
2021-12-15 18:00:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
it("renders h1 with correct attributes", () => {
|
2023-06-29 18:30:25 +08:00
|
|
|
expect(getComponent({ size: "1" }).asFragment()).toMatchSnapshot();
|
2021-12-15 18:00:10 +08:00
|
|
|
});
|
|
|
|
it("renders h2 with correct attributes", () => {
|
2023-06-29 18:30:25 +08:00
|
|
|
expect(getComponent({ size: "2" }).asFragment()).toMatchSnapshot();
|
2021-12-15 18:00:10 +08:00
|
|
|
});
|
|
|
|
it("renders h3 with correct attributes", () => {
|
2023-06-29 18:30:25 +08:00
|
|
|
expect(getComponent({ size: "3" }).asFragment()).toMatchSnapshot();
|
2021-12-15 18:00:10 +08:00
|
|
|
});
|
2022-04-20 16:14:24 +08:00
|
|
|
|
|
|
|
it("renders h4 with correct attributes", () => {
|
2023-06-29 18:30:25 +08:00
|
|
|
expect(getComponent({ size: "4" }).asFragment()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can have different appearance to its heading level", () => {
|
|
|
|
expect(getComponent({ size: "4", as: "h1" }).asFragment()).toMatchSnapshot();
|
2022-04-20 16:14:24 +08:00
|
|
|
});
|
2021-12-15 18:00:10 +08:00
|
|
|
});
|