()
| 64 | } |
| 65 | |
| 66 | async testConnection(): Promise<boolean> { |
| 67 | await this.client.testConnection(); |
| 68 | await this.ensureDirectories(); |
| 69 | return true; |
| 70 | } |
| 71 | |
| 72 | async ensureDirectories(): Promise<void> { |
| 73 | if (this.directoriesEnsured) return; |
nothing calls this directly
no test coverage detected