File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import * as fs from 'fs';
1111function loadArgs ( inRoot ) {
1212 const data = fs . readFileSync ( path . join ( inRoot , '../../.args.json' ) , 'utf8' ) ;
1313
14- console . log ( "data" , data ) ;
1514 try {
1615 const args = JSON . parse ( data ) ;
1716 for ( const key in args ) {
@@ -45,7 +44,6 @@ export async function run(): Promise<void> {
4544 continue ;
4645 const versionFile = tests [ f ] ? tests [ f ] : currentVersion ;
4746 if ( compareVersion ( currentVersion , versionFile ) >= 0 ) {
48- console . log ( f ) ;
4947 mocha . addFile ( path . resolve ( testsRoot , f ) ) ;
5048 }
5149 }
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ async function main() {
1515 // The path to test runner
1616 // Passed to --extensionTestsPath
1717 const extensionTestsPath = path . resolve ( __dirname , './index' ) ;
18- console . log ( extensionTestsPath )
1918 // Download VS Code, unzip it and run the integration test
2019 await runTests ( { extensionDevelopmentPath, extensionTestsPath } ) ;
2120 } catch ( err ) {
You can’t perform that action at this time.
0 commit comments