Testing Library
The React Testing Library is a very light-weight solution for testing React components. It provides light utility functions on top of react-dom and react-dom/test-utils, in a way that encourages better testing practices.
superplate's plugin of React Testing Library is built on top of superplate's Jest plugin and automatically includes necessary wrappers and imports to run your component tests.
Implementation#
You can see how superplate's React Testing Library plugin is implemented below.
tip
Configuration for Jest is not included. Please check out Jest Plugin to learn more about our Jest configuration.
Custom Render#
We may need to wrap our test components to context providers, data stores etc. It's a good practice to make this wrappers globally available. We will create a custom render and re-export everything from React Testing Library in test/index.tsx file.
import React, { ReactElement } from "react";import { render as baseRender, RenderOptions, RenderResult,} from "@testing-library/react";/*import { ThemeProvider } from 'my-ui-lib'import { TranslationProvider } from 'my-i18n-lib'*/
export const AllTheProviders = ({ children }) => { return ( // <ThemeProvider theme="light"> // <TranslationProvider> {children} // </TranslationProvider> // </ThemeProvider> );};
const render = (ui: ReactElement, options?: Omit<RenderOptions, "queries">) => baseRender(ui, { wrapper: AllTheProviders, ...options }) as RenderResult;
// re-export everythingexport * from "@testing-library/react";
// override render methodexport { render };Example Test#
import { fireEvent, render } from "@test"; // <root>/test/index.tsximport { MyComponent } from "./MyComponent";
describe("MyComponent", () => { it("button is clickable", () => { const mockFn = jest.fn(); const { getByTestId } = render(<MyComponent onClick={mockFn} />);
const btn = getByTestId("btn"); fireEvent.click(btn);
expect(mockFn).toHaveBeenCalledTimes(1); });});import React from "react";
export const MyComponent: React.FC<{ onClick: () => void }> = ({ onClick,}) => { return ( <div> <button data-testid="btn" onClick={onClick}> Click Me! </button> </div> );};Running Tests#
We will use Jest as our test runner. If Jest is already set up you can simply run:
- npm
- yarn
npm run testyarn testAdding Testing Library to your project later#
tip
All this work will be handled automatically by superplate, so you don’t need to do anything extra as long as you choose testing-library as testing plugin during the project creation phase.
If you want to add React Testing Library to your existing project first install the dependencies
- npm
- yarn
npm install -D @testing-library/react @testing-library/react-hooksyarn add -D @testing-library/react @testing-library/react-hooksThen you can follow documentations for detail usage
- React Testing Library documentation
- Next.js with Jest and Testing Library example repository