Skip to content

Commit 88a03d5

Browse files
committed
Update TestSuite.ts
1 parent 88c5483 commit 88a03d5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/tools/tester/TestSuite.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export class TestSuite {
3131
const settingsjson = path.join(__dirname, '..', 'config', 'settings.json')
3232
const settings = JSON.stringify({
3333
'MATLAB.installPath': MATLAB_PATH,
34+
'MATLAB.telemetry': false,
3435
'window.dialogStyle': 'custom',
3536
'terminal.integrated.copyOnSelection': true,
3637
'debug.toolBarLocation': 'docked',
@@ -56,7 +57,7 @@ export class TestSuite {
5657
}
5758

5859
/**
59-
* Queues the array of tests provided to each run in a seperate VSCode instance
60+
* Queues the array of tests provided to each run in a separate VSCode instance
6061
*/
6162
public async enqueueTests (tests: string[]): Promise<void> {
6263
const exTester = new ExTester(this.storageFolder, this.releaseQuality, undefined)
@@ -77,7 +78,7 @@ export class TestSuite {
7778
console.log(err)
7879
process.exit(1)
7980
}
80-
await PollingUtils.pause(30000); //ensure state is reset before running next test
81+
await PollingUtils.pause(30000); // ensure state is reset before running next test
8182
}
8283
}
8384
}

0 commit comments

Comments
 (0)