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 11/* eslint-disable no-process-exit */
22/* eslint-disable node/no-unpublished-import */
33import * as path from 'path' ;
4- import { runTests } from '@vscode/test-electron' ;
4+ import { SilentReporter , runTests } from '@vscode/test-electron' ;
55
66async function main ( ) {
77 // We are in test mode.
@@ -34,7 +34,8 @@ async function main() {
3434 `--user-data-dir=${ extensionDevelopmentPath } /.user-data-dir-test` ,
3535 // https://github.com/microsoft/vscode/issues/115794#issuecomment-774283222
3636 '--force-disable-user-env'
37- ]
37+ ] ,
38+ reporter : new SilentReporter ( ) // Suppress vscode download progress report
3839 } ) ;
3940 } catch ( err ) {
4041 console . error ( 'Failed to run integration tests: ' + err ) ;
@@ -56,7 +57,8 @@ async function main() {
5657 `--user-data-dir=${ extensionDevelopmentPath } /.user-data-dir-test` ,
5758 // https://github.com/microsoft/vscode/issues/115794#issuecomment-774283222
5859 '--force-disable-user-env'
59- ]
60+ ] ,
61+ reporter : new SilentReporter ( ) // Suppress vscode download progress report
6062 } ) ;
6163 } catch ( err ) {
6264 console . error ( 'Failed to run gopls tests: ' + err ) ;
You can’t perform that action at this time.
0 commit comments