Skip to content

Commit 5eadc30

Browse files
committed
Revert "Connect to MATLAB directly"
This reverts commit 64e4a48.
1 parent 64e4a48 commit 5eadc30

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/test/ui/debugging.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ suite('Debugging Smoke Tests', () => {
77

88
before(async () => {
99
vs = new VSCodeTester();
10-
await vs.connectToMATLAB()
10+
await vs.openEditor('hScript1.m')
11+
await vs.assertMATLABConnected()
12+
await vs.closeActiveEditor()
1113
await vs.openMATLABTerminal()
1214
await vs.terminal.executeCommand(`addpath('${vs.getTestFilesDirectory()}')`)
1315
await vs.terminal.executeCommand('clc')

src/test/ui/terminal.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ suite('Terminal Smoke Tests', () => {
77

88
before(async () => {
99
vs = new VSCodeTester();
10-
await vs.connectToMATLAB()
10+
await vs.openEditor('hScript1.m')
11+
await vs.assertMATLABConnected()
12+
await vs.closeActiveEditor()
1113
await vs.openMATLABTerminal()
1214
});
1315

0 commit comments

Comments
 (0)