(containerName: string)
| 817 | } |
| 818 | |
| 819 | private async removeProvisioningContainer(containerName: string): Promise<void> { |
| 820 | const removeResult = await runDockerCommand(`docker rm -f ${containerName}`, 10000); |
| 821 | if (removeResult.exitCode !== 0) { |
| 822 | throw new Error(removeResult.stderr || removeResult.stdout || "docker rm failed"); |
| 823 | } |
| 824 | } |
| 825 | |
| 826 | private async syncProjectToContainer( |
| 827 | projectPath: string, |
no test coverage detected