()
| 113 | } |
| 114 | |
| 115 | async deploy(): Promise<GetDeployResponse> { |
| 116 | await this.setApiClientAndCurrentUser(); |
| 117 | const deployInfo = this.deployOptions.deployId ? await this.continueExistingDeploy() : await this.startNewDeploy(); |
| 118 | return deployInfo; |
| 119 | } |
| 120 | |
| 121 | private async setApiClientAndCurrentUser() { |
| 122 | let apiKey = await this.effects.getObservableApiKey(this.effects); |
no test coverage detected