(instance: TestInstance)
| 47 | }; |
| 48 | |
| 49 | export const bindByTestIdQueries = (instance: TestInstance): ByTestIdQueries => ({ |
| 50 | getByTestId: getBy(instance), |
| 51 | getAllByTestId: getAllBy(instance), |
| 52 | queryByTestId: queryBy(instance), |
| 53 | queryAllByTestId: queryAllBy(instance), |
| 54 | findByTestId: findBy(instance), |
| 55 | findAllByTestId: findAllBy(instance), |
| 56 | }); |
no outgoing calls
no test coverage detected
searching dependent graphs…