This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
p61-project/presentation/react/components/__tests__/MonoText.test.tsx

11 lines
301 B
TypeScript
Raw Normal View History

2024-02-16 22:51:50 +01:00
import renderer from "react-test-renderer"
2024-03-16 00:36:44 +01:00
import { MonoText } from "@/presentation/react/components/MonoText"
2024-02-16 22:51:50 +01:00
describe("<MonoText />", () => {
it("renders correctly", () => {
const tree = renderer.create(<MonoText>Awesome text!</MonoText>).toJSON()
expect(tree).toMatchSnapshot()
})
})