(timeout: number)
| 122 | } |
| 123 | |
| 124 | function delayWithTimeout(timeout: number): Promise<void> { |
| 125 | return new Promise((resolve) => setTimeout(resolve, timeout)); |
| 126 | } |
| 127 | |
| 128 | export function ngswCommChannelFactory(): NgswCommChannel { |
| 129 | const opts = inject(SwRegistrationOptions); |
no test coverage detected
searching dependent graphs…