in src/integratedShell.ts [70:86]
await runLintInDocker(
workingDirectory + ":/tf-test/module",
containerName,
);
break;
case TestOption.e2e:
await runE2EInDocker(
workingDirectory + ":/tf-test/module",
containerName,
);
break;
case TestOption.custom:
const cmd: string = await vscode.window.showInputBox({
prompt: "Type your custom test command",
value: `run -v ${workingDirectory}:/tf-test/module --rm ${containerName} rake -f ../Rakefile build`,
});