简体   繁体   中英

React Testing Library: Simple routing test error

I've written a pretty straightforward test for react-router. The test is should simply test that the button with a to prop navigates to a new route on click.

const Routes = () => {
    return (
        <Switch>
            <Route
                exact
                path="/"
                render={() => (
                    <CornerButton to="/route">{btnText}</CornerButton>
                )}
            />
            <Route exact path="/route" render={() => <div>Route</div>} />
        </Switch>
    );
};

it("renders a route change with 'to' prop", async () => {
    render(
        <div>
            <MemoryRouter initialEntries={["/"]}>
                <Routes />
            </MemoryRouter>
        </div>
    );

    const btn = screen.getByRole("button", { name: btnText });
    fireEvent.click(btn);
    const newRoute = screen.getByText(/Route/i);
    expect(newRoute).toBeInTheDocument();
});

I'm seeing the error:

TestingLibraryElementError: Unable to find an element with the text: /Route/i.

The button works fine and the rendered HTML looks good:

<body>
      <div>
        <div>
          <a
            class="sc-jgHCyG begwzL"
            href="/route"
            style="text-decoration: none;"
          >
            <button
              class="sc-bBrOnJ gZtvsD"
              color="primary"
              type="button"
            >
              <div
                class="sc-cOajty wNAWC"
              >
                <div
                  class="sc-khAkjo jvrrvJ"
                >
                  text
                </div>
                <div
                  class="sc-AzgDb fmENQv"
                />
              </div>
            </button>
          </a>
        </div>
      </div>
    </body>

I'd love some help.

Edit: I came closer to a solution but the behavior seems odd to me. If I use: const btn = screen.getByRole("link", { name: btnText });

Instead of: const btn = screen.getByRole("button", { name: btnText });

Everything works. Does this somehow relate to the default behavior of the button? I do not call preventDefault() inside the component. But again, I have no problems clicking the button outside of tests.

When I try this code the test passes:

import { Switch, Route, MemoryRouter, Link } from "react-router-dom";
import { render, screen, fireEvent } from "@testing-library/react";

const Routes = () => {
  return (
    <Switch>
      <Route
        exact
        path="/"
        render={() => (
          <div>
            <div>
              <Link to="/route">
                <button color="primary" type="button">
                  <div>
                    <div>btnText</div>
                    <div />
                  </div>
                </button>
              </Link>
            </div>
          </div>
        )}
      />
      <Route exact path="/route" render={() => <div>Route</div>} />
    </Switch>
  );
};

it("renders a route change with 'to' prop", async () => {
  render(
    <div>
      <MemoryRouter initialEntries={["/"]}>
        <Routes />
      </MemoryRouter>
    </div>
  );

  const btn = screen.getByRole("button", { name: "btnText" });
  fireEvent.click(btn);
  const newRoute = screen.getByText(/Route/i);
  expect(newRoute).toBeInTheDocument();
});

So there is probably something else in your CornerButton that makes the button not work correctly in test.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM