React Testing Library: Проверьте, правильно ли переданы / отображены дочерние элементы.

Я пишу приложение React с использованием TypeScript. Я использую Material-UI для своих компонентов и React-Testing-Library для моих модульных тестов.

Я пишу оболочку для Grid-компонента material-ui, чтобы у меня всегда был контейнер.

import Grid from "@material-ui/core/Grid";
import withStyles, { WithStyles } from "@material-ui/core/styles/withStyles";
import React, { PureComponent } from "react";
import styles from "./styles";

export interface OwnProps {
  className?: string;
}

export interface Props extends WithStyles<typeof styles>, OwnProps {}

export interface DefaultProps {
  className: string;
}

export class GridContainer extends PureComponent<Props & DefaultProps> {
  static defaultProps: DefaultProps = {
    className: ""
  };

  render() {
    const { classes, children, className, ...rest } = this.props;
    return (
      <Grid
        data-testid="grid-container"
        container={true}
        {...rest}
        className={classes.grid + " " + className}
      >
        {children}
      </Grid>
    );
  }
}

export default withStyles(styles)(GridContainer);

Я хочу написать тест, который проверяет, правильно ли отображаются дети. Вот что я написал:

import "jest-dom/extend-expect";
import React from "react";
import { cleanup, render } from "react-testing-library";
import GridContainer, { OwnProps } from "./GridContainer";
afterEach(cleanup);

const createTestProps = (props?: object): OwnProps => ({
  ...props
});

describe("GridContainer", () => {
  const props = createTestProps();
  const { getByTestId } = render(
    <GridContainer {...props}>
      <div data-testid="child" />
    </GridContainer>
  );
  const container = getByTestId("grid-container");
  describe("rendering", () => {
    test("it renders it's children", () => {
      expect(container.children.length).toBe(1);
      expect(getByTestId("child")).toBeDefined();
    });
  });
});

Проблема в первой части теста, где я проверяю длину проходов детей. Но expect(getByTestId("child")).toBeDefined(); не удается с:

● GridContainer › rendering › it renders it's children

    Unable to find an element by: [data-testid="child"]

    <body />

      24 |     test("it renders it's children", () => {
      25 |       expect(container.children.length).toBe(1);
    > 26 |       expect(getByTestId("child")).toBeDefined();
         |              ^
      27 |     });
      28 |   });
      29 | });

      at getElementError (node_modules/dom-testing-library/dist/query-helpers.js:30:10)
      at getAllByTestId (node_modules/dom-testing-library/dist/queries.js:231:45)
      at firstResultOrNull (node_modules/dom-testing-library/dist/query-helpers.js:38:30)
      at getByTestId (node_modules/dom-testing-library/dist/queries.js:241:42)
      at Object.getByTestId (src/components/Grid/GridContainer/GridContainer.test.tsx:26:14)

Разве нельзя дать data-testid элементу в функции рендеринга? Как я могу проверить, что дети правильно отображаются?

РЕДАКТИРОВАТЬ Вот вывод отладки:

● Console

    console.log node_modules/react-testing-library/dist/index.js:57
      <body>
        <div>
          <div
            class="MuiGrid-container-2 GridContainer-grid-1 "
            data-testid="grid-container"
          >
            <div
              data-testid="child"
            />
          </div>
        </div>
      </body>

1 ответ

Решение

Проблема в том, что вы делаете один раз, в describe блок. Это, вероятно, не работает, как вы думаете. Код в describe блоки, которые не находятся внутри test (или другая шутка, например, beforeEach) опередил Джест. В общем, вы никогда не хотите никакого кода внутри describe блок, но вне test (или другая шутка).

Вы можете либо визуализировать компонент в beforeEach или иметь вспомогательную функцию рендеринга, которую вы вызываете в каждом тесте.

Я раздвоил вашу песочницу с помощью вышеуказанного подхода, и оба теста теперь проходят: https://codesandbox.io/s/v3wk1vlx3l

Другие вопросы по тегам