* Emulates a failed dynamic import promise.
()
| 90 | * Emulates a failed dynamic import promise. |
| 91 | */ |
| 92 | function failedDynamicImport(): Promise<void> { |
| 93 | return new Promise((_, reject) => { |
| 94 | setTimeout(() => reject()); |
| 95 | }); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Helper function to await all pending dynamic imports |
no test coverage detected
searching dependent graphs…