(conn: string)
| 337 | } |
| 338 | |
| 339 | function makeConnRoute(conn: string): string { |
| 340 | if (isBlank(conn)) { |
| 341 | return "conn:local"; |
| 342 | } |
| 343 | return "conn:" + conn; |
| 344 | } |
| 345 | |
| 346 | function sleep(ms: number): Promise<void> { |
| 347 | return new Promise((resolve) => setTimeout(resolve, ms)); |
no test coverage detected