()
| 206 | // Add async validator that never resolves to keep pending state |
| 207 | let resolveValidator: () => void; |
| 208 | const asyncValidator = () => |
| 209 | new Promise<null>((resolve) => { |
| 210 | resolveValidator = () => resolve(null); |
| 211 | }); |
| 212 | |
| 213 | act(() => { |
| 214 | fixture.componentInstance.model.control.addAsyncValidators(asyncValidator); |
nothing calls this directly
no test coverage detected
searching dependent graphs…