()
| 232 | // Add async validator that never resolves to keep pending state |
| 233 | let resolveValidator: () => void; |
| 234 | const asyncValidator = () => |
| 235 | new Promise<null>((resolve) => { |
| 236 | resolveValidator = () => resolve(null); |
| 237 | }); |
| 238 | |
| 239 | act(() => { |
| 240 | fixture.componentInstance.ctrl.addAsyncValidators(asyncValidator); |
nothing calls this directly
no test coverage detected
searching dependent graphs…