()
| 137 | const testLocalOnly = testIf(!isRemote); |
| 138 | const testDockerOnly = testIf(type === "docker"); |
| 139 | const createRuntime = (): Runtime => |
| 140 | createTestRuntime( |
| 141 | type, |
| 142 | getBaseWorkdir(), |
| 143 | sshConfig, |
| 144 | type === "docker" |
| 145 | ? { image: "mux-ssh-test", containerName: sshConfig!.containerId } |
| 146 | : undefined |
| 147 | ); |
| 148 | |
| 149 | const execWorkspace = ( |
| 150 | runtime: Runtime, |
no test coverage detected