We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 29bd01a + 718d634 commit 14fec1aCopy full SHA for 14fec1a
1 file changed
src/test/tools/tester/TerminalTester.ts
@@ -19,7 +19,10 @@ export class TerminalTester {
19
* Execute a command in the MATLAB terminal
20
*/
21
public async executeCommand (command: string): Promise<void> {
22
- return await this.terminal.executeCommand(command);
+ if (command.endsWith('clc')) {
23
+ return await this.terminal.executeCommand(`${command}, disp(' ')`); // workaround since clc is broken in 22b
24
+ }
25
+ return await this.terminal.executeCommand(command)
26
}
27
28
/**
0 commit comments