* * @param time The time in ms until the stable timedout warning message is logged
(time: number, console: Console)
| 378 | * @param time The time in ms until the stable timedout warning message is logged |
| 379 | */ |
| 380 | function logWarningOnStableTimedout(time: number, console: Console): void { |
| 381 | const message = |
| 382 | `Angular hydration expected the ApplicationRef.isStable() to emit \`true\`, but it ` + |
| 383 | `didn't happen within ${time}ms. Angular hydration logic depends on the application becoming stable ` + |
| 384 | `as a signal to complete hydration process.`; |
| 385 | |
| 386 | console.warn(formatRuntimeError(RuntimeErrorCode.HYDRATION_STABLE_TIMEDOUT, message)); |
| 387 | } |
no test coverage detected
searching dependent graphs…