()
| 207 | notify.complete(); |
| 208 | }) |
| 209 | ); |
| 210 | }; |
| 211 | |
| 212 | const extensions = { |
| 213 | request(req: Request) { |
| 214 | executor(req); |
| 215 | }, |
| 216 | send(req: Request, matcher = (_arg: Request, _resp: Response) => true) { |
| 217 | const firstResult = responses.pipe(filter((res) => matcher(req, res))); |
| 218 | |
| 219 | executor(req); |
| 220 | return firstValueFrom(firstResult); |
| 221 | }, |
nothing calls this directly
no test coverage detected