2022-05-06 17:09:28 +08:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-02-22 18:52:55 +08:00
|
|
|
import { render } from "@testing-library/react";
|
2021-12-15 18:00:10 +08:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
import Heading from "../../../../src/components/views/typography/Heading";
|
|
|
|
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
|
|
|
});
|