DocSpace-client/packages/shared/components/text/text.test.tsx

13 lines
296 B
TypeScript

import React from "react";
import { render, screen } from "@testing-library/react";
import "@testing-library/jest-dom";
import { Text } from ".";
test("<Text />: renders without error", () => {
render(<Text>Test text</Text>);
expect(screen.queryByTestId("text")).toBeInTheDocument();
});