| 732 | let effectRunCount = 0; |
| 733 | |
| 734 | class SignalReadingInterceptor implements HttpInterceptor { |
| 735 | intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> { |
| 736 | interceptorSignal(); |
| 737 | return next.handle(req); |
| 738 | } |
| 739 | } |
| 740 | |
| 741 | TestBed.configureTestingModule({ |
| 742 | providers: [ |
nothing calls this directly
no outgoing calls
no test coverage detected