(instance: TestInstance)
| 22 | }; |
| 23 | |
| 24 | const queryAllByTestId = (instance: TestInstance): QueryAllByQuery<TextMatch, ByTestIdOptions> => |
| 25 | function queryAllByTestIdFn(testId, queryOptions) { |
| 26 | return findAll(instance, (item) => matchTestId(item, testId, queryOptions), queryOptions); |
| 27 | }; |
| 28 | |
| 29 | const getMultipleError = (testId: TextMatch) => |
| 30 | `Found multiple elements with testID: ${String(testId)}`; |
nothing calls this directly
no test coverage detected
searching dependent graphs…