File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
/* eslint-disable no-process-exit */
2
2
/* eslint-disable node/no-unpublished-import */
3
3
import * as path from 'path' ;
4
- import { runTests } from '@vscode/test-electron' ;
4
+ import { SilentReporter , runTests } from '@vscode/test-electron' ;
5
5
6
6
async function main ( ) {
7
7
// We are in test mode.
@@ -34,7 +34,8 @@ async function main() {
34
34
`--user-data-dir=${ extensionDevelopmentPath } /.user-data-dir-test` ,
35
35
// https://github.com/microsoft/vscode/issues/115794#issuecomment-774283222
36
36
'--force-disable-user-env'
37
- ]
37
+ ] ,
38
+ reporter : new SilentReporter ( ) // Suppress vscode download progress report
38
39
} ) ;
39
40
} catch ( err ) {
40
41
console . error ( 'Failed to run integration tests: ' + err ) ;
@@ -56,7 +57,8 @@ async function main() {
56
57
`--user-data-dir=${ extensionDevelopmentPath } /.user-data-dir-test` ,
57
58
// https://github.com/microsoft/vscode/issues/115794#issuecomment-774283222
58
59
'--force-disable-user-env'
59
- ]
60
+ ] ,
61
+ reporter : new SilentReporter ( ) // Suppress vscode download progress report
60
62
} ) ;
61
63
} catch ( err ) {
62
64
console . error ( 'Failed to run gopls tests: ' + err ) ;
You can’t perform that action at this time.
0 commit comments