Skip to content

Commit 87beccc

Browse files
fixed UI test case
1 parent 2ae529e commit 87beccc

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

src/devfile/execCommand.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,10 @@ export class ExecCommandExecutor {
3939
`exec ${podName} -c ${resolvedExec.component} -- sh -c "cd ${resolvedExec.workingDir} && ${resolvedExec.commandLine}"`,
4040
);
4141

42-
await OpenShiftTerminalManager
43-
.getInstance()
44-
.createTerminal(
45-
command,
46-
`Run '${resolvedExec.commandLine}'`,
47-
componentFolder.contextPath,
48-
);
42+
void OpenShiftTerminalManager.getInstance().createTerminal(
43+
command,
44+
`Component ${componentName}: Run '${resolvedExec.commandLine}' Command`,
45+
componentFolder.contextPath
46+
);
4947
}
5048
}

0 commit comments

Comments
 (0)