| 1157 | |
| 1158 | it('should throw if TestBed.overridePipe is called after TestBed initialization', () => { |
| 1159 | @Pipe({ |
| 1160 | name: 'myPipe', |
| 1161 | standalone: false, |
| 1162 | }) |
| 1163 | class MyPipe { |
| 1164 | transform(value: any) { |
| 1165 | return value; |
| 1166 | } |
| 1167 | } |
| 1168 | |
| 1169 | TestBed.inject(Injector); |
| 1170 |
nothing calls this directly
no test coverage detected
searching dependent graphs…