| 910 | let effectRunCount = 0; |
| 911 | |
| 912 | class SignalReadingInterceptor implements HttpInterceptor { |
| 913 | intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> { |
| 914 | interceptorSignal(); |
| 915 | return next.handle(req); |
| 916 | } |
| 917 | } |
| 918 | |
| 919 | TestBed.configureTestingModule({ |
| 920 | providers: [ |
nothing calls this directly
no outgoing calls
no test coverage detected