(error: any)
| 65 | } |
| 66 | |
| 67 | export function printExc(error: any): void { |
| 68 | console.error(formatExc(error)) |
| 69 | } |
| 70 | |
| 71 | export function sleep(retryWait: number) { |
| 72 | return new Promise((resolve) => setTimeout(resolve, retryWait * 1000)) |
no test coverage detected