()
| 129 | orderBy: { name: QueryOrder.DESC }, |
| 130 | }; |
| 131 | async function* mockStream() { |
| 132 | yield { name: 'bar' }; |
| 133 | } |
| 134 | methods.stream.mockReturnValue(mockStream()); |
| 135 | const results = []; |
| 136 | for await (const item of repo.stream(options)) { |
no outgoing calls
no test coverage detected