UNPKG

react-autosuggestions

Version:

An accessible React component to take the pain out of creating auto-suggestion components

11 lines (7 loc) 343 B
import { render, queries } from "@testing-library/react"; import * as customQueries from "./customQueries.js"; const customRender = (ui, options) => render(ui, { queries: { ...queries, ...customQueries }, ...options }); export * from "@testing-library/react"; export * from "@testing-library/jest-dom"; export { customRender as render };