Skip to content

Commit 8c1ad62

Browse files
committed
Disabled terminal
1 parent b3427ee commit 8c1ad62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/automaticTest.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const startAutomaticTest = () => {
5555
) &&
5656
!testRunningFlag
5757
) {
58-
const terminalWriter = await startTestTerminal();
58+
// const terminalWriter = await startTestTerminal();
5959
let webviewPanel;
6060
let html = "<h3>Automatic test results will be visible below:</h3>";
6161

@@ -100,7 +100,7 @@ const startAutomaticTest = () => {
100100

101101
html += response;
102102

103-
terminalWriter.fire(response);
103+
// terminalWriter.fire(response);
104104
});
105105

106106
testProcess.process.stderr.on("data", (buffer) => {
@@ -116,7 +116,7 @@ const startAutomaticTest = () => {
116116

117117
html += response;
118118

119-
terminalWriter.fire(response);
119+
// terminalWriter.fire(response);
120120
});
121121

122122
// Handle Closure

0 commit comments

Comments
 (0)