@homebound/rtl-react-router-utils
v1.2.0
Published
A `withRouter` helper for using with `rtl-utils`.
Downloads
390
Maintainers
Keywords
Readme
rtl-react-router-utils
A withRouter
helper for using with rtl-utils
.
import { withRouter } from "@homebound/rtl-react-router-utils";
const router = withRouter("/currentPage");
const { button } = await render(<FooPage />, router);
click(button);
expect(router.history.location.pathname).toEqual("/somethingElse");
A withRoute
helper for using with rtl-utils
.
import { withRoute, withRouter } from "@homebound/rtl-react-router-utils";
const router = withRouter("/currentPage");
const route = withRoute("/:path");
const { button } = await render(<FooPage />, route, router);
click(button);
expect(router.history.location.pathname).toEqual("/somethingElse");