Best practices
Last modified on Tue 21 May 2024

Tools we use for testing are React-Testing-Library and Jest

Video guide

If you want to see more practical usage, here is the recording form JS Standup about next.js testing presented by 🦌. The project tested in the video is LearnReact project.

Setup

First of all, install Jest:

npm install --save-dev jest @types/jest

Add a test script to package.json:

  "scripts": {
    "test": "jest",

    // optional?
    "test:ci": "jest --ci --coverage",
    "test:update": "npm run test -- --u",
    "test:watch": "npm run test -- --watch",
    // ...other scripts
  }

Create the jest.config.js file in the project root and follow the instructions for the Rust compiler setup.

Next, install react-test-library:

npm i --save-dev @testing-library/react

User events

Use testing-library/user-event for mocking events:

npm install --save-dev @testing-library/user-event

Testing hooks

Use react-hooks-testing-library for testing hooks:

npm install --save-dev @testing-library/react-hooks

Utils

Mock providers and store

While testing, we need to mock various providers like <ChakraProvider>. To mock all providers, we can create a ./__tests__/test-utils.tsx file where we will export the custom render method with all providers:

const AllProviders = ({ children }) => (
  <ChakraProvider theme={theme}>{children}</ChakraProvider>
);

Beside providers, we need to mock the datx store:

export const StoreMockContext = React.createContext<AppCollection | null>(null);

const withMockStore = (PageComponent: NextPage) => {
  const WithMockStore: FC = (props) => {
    const store: AppCollection = new AppCollection();

    return (
      <StoreMockContext.Provider value={store}>
        <PageComponent {...props} />
      </StoreMockContext.Provider>
    );
  };

  return WithMockStore;
};

While testing we can wrap the component in <StoreMockContext.Consumer> to get access to the store. The store is needed for mocking the datx model with relationships.

After mocking all providers and the store, we export everything:

const customRender = (ui: React.ReactElement, options?: any) =>
  render(ui, { wrapper: withMockStore(AllProviders), ...options });

// re-export everything
export * from "@testing-library/react";

// override render method
export { customRender as render };

Now, when testing components we'll import render from __tests__/test-utils.tsx instead of @testing-library/react, like this:

import { render } from "__tests__/test-utils";

Or if we add path to tsconfig:

{
  "compilerOptions": {
    ...
    "paths": {
      ...
      "@test-utils": ["__tests__/test-utils.tsx"]
    }
  },
}

Then we can import render like this:

import { render } from "@test-utils";

Folder structure

All tests should be defined in the same directory where the file being tested is. There is one exception, and that is the pages folder because Next.js doesn't allow tests in the pages folder. That's why we have the __tests__ folder in the root of our application.

Example:

src
.
├── __mocks__
│   └── react-i18next.tsx
├── __tests__
│   ├── pages
│   │   └── user.test.ts
│   └── test-utils.tsx
├── pages
│   └── user.ts
├── fetchers
│   └── users
│       ├── users.ts
│       └── users.test.ts
└── components
    └── shared
        └── Button
            ├── Button.test.tsx
            └── Button.tsx

__mocks__

Manual mocks are used to stub out functionality with mock data. For example, instead of accessing a resource from node_modules you might want to create a mock module that allows you to use fake data. Manual mocks are defined by writing a module in the __mocks__/ subdirectory immediately adjacent to the module. (docs)

For example, if we want to mock react-i18next, we will create ./__mocks__/react-i18next.tsx

import {
  I18nextProvider,
  initReactI18next,
  setDefaults,
  getDefaults,
  setI18n,
  getI18n,
} from "react-i18next";

const useMock = [(k) => k, {}];
useMock.t = (k) => k;
useMock.i18n = {
  language: "en-GB",
};

module.exports = {
  // this mock makes sure any components using the translate HoC receive the t function as a prop
  withTranslation: () => (Component) => (props) =>
    <Component t={(k) => k} {...props} />,
  useTranslation: jest.fn(() => useMock),

  // mock if needed
  I18nextProvider,
  initReactI18next,
  setDefaults,
  getDefaults,
  setI18n,
  getI18n,
};

Introduction

Based on the Guiding Principles, your tests should resemble how users interact with your code (component, page, etc.) as much as possible. In this context, the user is not the end application user, but some parent component that would use the component that is being tested.

Query priorities (more info):

  1. Queries Accessible to Everyone queries that reflect the experience of visual/mouse users as well as those that use assistive technology
  1. Semantic Queries HTML5 and ARIA compliant selectors. Note that the user experience of interacting with these attributes varies greatly across browsers and assistive technology.
  1. Test IDs

Avoid unnecessary "is rendering" test

Since we have no value in testing whether our component will correctly render, avoid writing these type of tests and focus on more valuable tests instead.

Avoid destructuring render result for querying/finding elements

It is recommended that you avoid destructuring the render(...) result and use screen object instead. To see more info about why you should use screen, and other common mistakes in RTL usage, please refer to the Kents blog post.

Naming Convention

Tests should have meaningful names and should be nested properly by following the next pattern:

  1. Root describe must be the same as the component/page/hook/util we're testing
  2. Nested describes must have the when prefix (to indicate specific scenarios)
  3. Description of it must be a use case sentence

An example:

describe("useAuth", () => {
  it("should throw context error", () => {
    // ...
  });
  it("should toggle loading state", () => {
    // ..
  });

  describe("when user exists", () => {
    it("should return the user object", () => {
      // ...
    });
    it("should log out user", () => {
      // ...
    });
  });

  describe("when user does not exist", () => {
    it("should return guest user", () => {
      // ...
    });
    it("should destroy session on window close", () => {
      // ...
    });
  });
});

Basic test example

Base Component:

const Button: FC<ButtonProps> = (props) => <button {...props} />;

Test:

describe("Button", () => {
  // or something more meaningful
  it("should handle click", () => {
    const buttonText = "click here";
    const testOnClick = jest.fn();

    render(<Button onClick={testOnClick}>{buttonText}</Button>);

    user.click(screen.getByText(buttonText));

    expect(testOnClick).toBeCalledTimes(1);
  });
});

Components that use a base component test example

Component:

import { Button } from "components/Button";

const UserCard: FC<UserCardProps> = ({ title }) => (
  <Card>
    <h3>{title}</h3>
    <Button>click</Button>
  </Card>
);

Test:

Here, the Button component is mocked since we only care about the specifics of the UserCard component. This is especially useful when you don't want to generate a large tree inside your tests for components that don't have any impact on the actual test.

import { screen } from '@testing-library/react';
import { Button } from "components/Button";

jest.mock("components/Button");
(Button as jest.Mock).mockReturnValue(<button />);

describe("UserCard", () => {
  it("should display the correct title", () => {
    const username = "Test User";

    render(<UserCard title={username} />);

    expect(screen.getByText(username)).toBeDefined();
  });
});

Repeated component rendering

Describe your rendering inside beforeEach so you could use screen.{getBySomething} in your tests later, to reduce number of unnecessary renders.

An example:

describe("AlertButton", () => {
  let title: string;
  let confirmButtonText: string;
  let onConfirm: () => void;

  beforeEach(() => {
    title = "Bonjour";
    confirmButtonText = "Like, share, subscribe";
    onConfirm = jest.fn();

    render(
      <AlertButton
        title={title}
        confirmButtonText={confirmButtonText}
        onConfirm={onConfirm}
      />
    );
  });

  describe("when clicked", () => {
    beforeEach(async () => {
      await waitFor(() => {
        user.click(screen.getByText(buttonText));
      });
    });

    it("should open alert dialog", () => {
      expect(screen.queryByRole("alertdialog")).toBeNull();
    });
    it("should display correct title", () => {
      expect(screen.queryByText(title)).not.toBeNull();
    });
  });

  describe("when confirm is clicked", () => {
    beforeEach(async () => {
      await waitFor(() => {
        user.click(screen.getByText(buttonText));
      });
    });

    it("should close the dialog", () => {
      expect(screen.queryByRole("alertdialog")).toBeNull();
    });

    // ... more test cases
  });
});

Note: This is a shortened example of this concept, you can refer to the standup video section for more info: Next.js testing - Testing shared components

Testing user events

User actions are the bread and butter of interactive web applications. Testing user actions means ensuring that when a user clicks, drags, types, or interacts with your application in any way, the app behaves correctly.

Why is it important?
React components often encapsulate user interactions. Imagine a form where a user submits data or a button that toggles a specific state. If these don't work as expected, users can lose trust in our application. Or worse, our brand.

Testing Flow:
To test user actions, you'll usually:

  1. Render the component under test.
  2. Simulate a user action (like a button click).
  3. Check the outcome – this could be a changed state, a rendered element, or an API call.

Further Exploration: We have added a more comprehensive chapter on Testing User Actions, providing real-world examples and a guide that will help you ensure your React applications respond correctly to user interactions. You can find it here: Testing - User actions

Page component testing

Pages tests should be located in src/__tests__/pages folder because Next.js is not allowing tests in /pages folder. Test name should be the same as the page file with test.tsx extension.

Page example:

const UserPage: NextPage = () => {
  const { data, error } = useSWR<Array<User>, IResponseError>(
    USER_KEY,
    fetchUsers
  );

  if (error) {
    return <ErrorPage />;
  }

  if (!data) {
    return <LoadingPage />;
  }

  return <UserTemplate userList={data} />;
};

export default UserPage;

In this page example we should test all three states of the page component. To do that we should mock <ErrorPage>, <LoadingPage> and <UserTemplate> and check if it's rendered based on the fetcher response.

Test example:

jest.mock("components/error-page");
jest.mock("components/loading-page");
jest.mock("components/user-template");
jest.mock("fetchers/users");

(ErrorPage as jest.Mock).mockReturnValue(
  <div data-testid="error-page-testid" />
);
(LoadingPage as jest.Mock).mockReturnValue(
  <div data-testid="loading-page-testid" />
);
(UserTemplate as jest.Mock).mockReturnValue(
  <div data-testid="user-template-page-testid" />
);

describe("User Page", () => {
  it("should render error page", async () => {
    (fetchUsers as jest.Mock).mockResolvedValue(new Error("Error occurred!"));

    render(<UserPage />);

    expect(await screen.findByTestId("error-page-testid")).toBeDefined();
  });
  it("should render loading page", async () => {
    (fetchUsers as jest.Mock).mockResolvedValue(null);

    render(<UserPage />);

    expect(await screen.findByTestId("loading-page-testid")).toBeDefined();
  });
  it("should render user page", async () => {
    (fetchUsers as jest.Mock).mockResolvedValue([{ username: "test user" }]);

    render(<UserPage />);

    expect(
      await screen.findByTestId("user-template-page-testid")
    ).toBeDefined();
  });
});

Because of testing useSWR behavior (which will re-render DOM after fetcher promise is resolved), we need to use findByTestId method that returns a promise that will resolve when the element is added to DOM.

SWR testing

To use SWR in your tests, add SWRConfig to your AllProviders mock with the following setup (note: your cases could require more customization):

const AllProviders = ({ children }) => (
  <SWRConfig value={{ dedupingInterval: 0, provider: () => new Map() }}>
    <ChakraProvider theme={theme}>{children}</ChakraProvider>
  </SWRConfig>
);

With this setup, we are sure that each component we're testing will have its own cache, so we don't have to manually clear the cache before each test.

Check out this issue and this answer that explains fixing the known problem.

Server side rendering

For testing pages that are rendered on server we use next-page-tester. It is used for testing pages that fetch data in getServerSideProps or getStaticProps.

User page example:

const UserPage: NextPage<any> = ({ data }) => {
  return <UserTemplate users={data} />;
};

export async function getServerSideProps() {
  const store = new AppCollection();

  const data = await fetchUsers(store);

  return { props: { data } };
}

export default UserPage;

Test example:

describe("User Page", () => {
  it("displays user data", async () => {
    (fetchUsers as jest.Mock).mockResolvedValue([
      new User({
        id: "1",
        name: "Test user",
        role: new Role({ name: RoleTypes.User }),
      }),
    ]);

    const { render } = await getPage({
      route: "/user",
    });

    render();

    expect(screen.queryByText("Test user")).not.toBeNull();
  });
});

Testing passed props

A quick how to on using Jest to check if correct props are passed to a child component.

This example is purely to show how to verify that a React components props are passed in a Jest unit test. There are two components, a MyModal and a Modal from Chakra UI library. The MyModal renders Modal and Button, and the 'open' state is handled with useDisclosure hook. The goal is to check if Modal component gets the isOpen={true} prop when the user clicks the button.

// MyModal.tsx
export const MyModal: FC<ButtonProps> = (props) => {
  const { isOpen, onOpen, onClose } = useDisclosure();

  return (
    <>
      <Button {...props} onClick={onOpen}>
        Open my modal
      </Button>

      <Modal isOpen={isOpen} onClose={onClose}>
        {/* Modal stuff */}
      </Modal>
    </>
  );
};

// MyModal.test.tsx
import { Modal } from "@chakra-ui/react";

jest.mock("@chakra-ui/react", () => {
  const originalImplementation = jest.requireActual("@chakra-ui/react");

  return {
    ...originalImplementation,
    Modal: jest.fn((props) => {
      const { Modal: OriginalModal } = jest.requireActual("@chakra-ui/react");

      return <OriginalModal {...props} />;
    }),
  };
});

describe("MyModal", () => {
  it("should open on click", () => {
    render(<MyModal />);

    expect(Modal).toBeCalledWith(
      expect.objectContaining({ isOpen: false }),
      expect.anything()
    );

    const button = screen.queryByRole("button");
    expect(button).toBeDefined();

    userEvent.click(button);
    expect(Modal).toBeCalledWith(
      expect.objectContaining({ isOpen: true }),
      expect.anything()
    );
  });
});

Fetchers

Fetcher tests should be located in /fetchers/{{ fetcher name }} folder next to the fetcher that is tested.

...
└── fetchers
    └── users
        ├── user.ts
        └── user.test.ts

Using datx:

When testing fetchers that use Datx, we create mocked store Datx store and instead of making API calls with request we need to mock request and test the functionality of the fetcher.

In the example below our fetcher fetches one User model and if the user doesn't have a relationship to Role model we add a default one.

export async function fetchUser(
  store: AppCollection,
  id: string
): Promise<User> {
  try {
    const response = await store.request(`users/${id}`, "GET", undefined, {
      include: ["role"],
    });
    const user = response.data as User;

    if (user.role === null) {
      const newRole = store.add({ name: RoleTypes.User }, Role);
      user.role = newRole;
    }

    return user;
  } catch (resError) {
    throw resError.error;
  }
}

Test example:

describe("fetchUser", () => {
  it("should return success with only user", async () => {
    const mockStore = new AppCollection();
    const mockUser = mockStore.add({}, User);

    mockStore.request = jest.fn().mockResolvedValue({ data: mockUser });

    const fetchResponse = await fetchUsers(mockStore, "1");

    expect(fetchResponse).toBeInstanceOf(User);
    expect(fetchResponse.role).toBeDefined();
    expect(fetchResponse.role.name).toBe(RoleTypes.User);
  });

  it("should return success with user and role", async () => {
    const mockStore = new AppCollection();
    const mockRole = mockStore.add({ name: RoleTypes.Superadmin }, Role);
    const mockUser = mockStore.add({ role: mockRole }, User);

    mockStore.request = jest.fn().mockResolvedValue({ data: mockUser });

    const fetchResponse = await fetchUsers(mockStore, "1");

    expect(fetchResponse).toBeInstanceOf(User);
    expect(fetchResponse.role).toBeDefined();
    expect(fetchResponse.role.name).toBe(RoleTypes.Superadmin);
  });

  it("should return an error", async () => {
    const mockError = { description: "Error occurred!" };
    const mockStore = new AppCollection();
    mockStore.request = jest.fn().mockRejectedValue({ error: [mockError] });

    try {
      await fetchUsers(mockStore, "1");
    } catch (fetchError) {
      expect(fetchError.length).toBe(1);
      expect(fetchError[0]).toBe(mockError);
    }
  });
});

For more info about testing asynchronous code read docs.

Mocking API routes

Mock Service Worker is an API mocking library that uses Service Worker API to intercept actual requests.

Example:

import { rest } from "msw";
import { setupServer } from "msw/node";

const apiEndpoint = "http://localhost:3000";

const mockTodoData = [{ title: "Todo #1", todos: [] }];

const server = setupServer(
  // Describe the requests to mock.
  rest.post(`${apiEndpoint}/api/todo-lists`, (req, res, ctx) => {
    return res(ctx.json(mockTodoData));
  })
);

beforeAll(() => {
  // Establish requests interception layer before all tests.
  server.listen();
});

afterAll(() => {
  // Clean up after all tests are done
  server.close();
});

test("TodoComponent renders correct number of rows", async () => {
  render(<TodoList />);

  const Rows = screen.getAllByRole("row");
  expect(Rows.length).toBe(1);
});

Hooks

react-hooks-testing-library creates a simple test harness for React hooks that handles running them within the body of a function component, as well as providing various useful utility functions for updating the inputs and retrieving the outputs of your custom hook. This library aims to provide a testing experience as close as possible to how your hook is used in a real component.

Example hook:

function useModal(initialOpen = false) {
  const [isOpen, setOpen] = useState(initialOpen);

  const toggle = useCallback(() => {
    setIsOpen(!isOpen);
  }, [isOpen]);

  const close = useCallback(() => {
    setIsOpen(false);
  }, []);

  return { isOpen, close, toggle };
}

Example test:

describe("useModal", () => {
  it("should toggle isOpen on toggle call", async () => {
    const { result } = renderHook(() => useModal());

    await waitFor(() => {
      result.current.toggle();
    });

    expect(result.current.isOpen).toBe(true);
  });

  it("should change isOpen to false on close call", async () => {
    const { result } = renderHook(() => useModal(true));

    await waitFor(() => {
      result.current.close();
    });

    expect(result.current.isOpen).toBe(false);
  });
});

Mock hooks

Sometimes we want our custom hook to return a mock response while we test component consuming it.

Example hook:

// @/hooks/useTodos.ts
export const useTodos = (config?: SWRConfiguration) => {
  return useSWR(() => {
    return "api/todo-lists";
  }, config);
};

Example mock and test:

import * as hooks from "@/hooks/useTodos";

const mockTodoData = [{ title: "Todo #1", todos: [] }];

jest.spyOn(hooks, "useTodos").mockImplementation(() => {
  return {
    data: mockTodoData,
  } as SWRResponse;
});

test("TodoComponent renders correct number of rows", async () => {
  render(<TodoList />); // uses useTodos

  const Rows = screen.getAllByRole("row");
  expect(Rows.length).toBe(1);
});

Spy will now redirect any hook calls to mock implementation.