@@ -5,9 +5,9 @@ const config = require("./config"),
55 utils = require ( "./utils" ) ,
66 request = require ( 'request' ) ;
77
8- exports . pollBuildStatus = ( bsConfig , bsConfigPath , buildDetails ) => {
8+ exports . pollBuildStatus = ( bsConfig , buildDetails ) => {
99 return new Promise ( function ( resolve , reject ) {
10- logBuildDetails ( bsConfig , bsConfigPath , buildDetails ) ;
10+ logBuildDetails ( bsConfig , buildDetails ) ;
1111 printSpecsStatus ( )
1212 . then ( ( data ) => {
1313 printSpecsRunSummary ( ) ;
@@ -27,17 +27,14 @@ exports.pollBuildStatus = (bsConfig, bsConfigPath, buildDetails) => {
2727 } ) ;
2828} ;
2929
30- let logBuildDetails = ( bsConfig , bsConfigPath , buildDetails ) => {
30+ let logBuildDetails = ( bsConfig , buildDetails ) => {
3131 let parallels_enabled = false ;
3232 if ( bsConfig . run_settings . parallels ) {
3333 parallels_enabled = true ;
3434 }
3535 let parallelMessage = `Run in parallel: ${ parallels_enabled ? 'enabled' : 'disabled' } ` ;
3636 if ( parallels_enabled ) parallelMessage = parallelMessage + ` (attempting to run on ${ buildDetails . machines } machines)` ;
3737
38- // logger.info(`Configuration file: ${bsConfigPath}`);
39- // logger.info(`Cypress config file: ${bsConfig.run_settings.cypress_config_file}`);
40- // logger.info(`Local connection: ${bsConfig.connection_settings.local ? 'enabled' : 'disabled'}`);
4138 logger . info ( `Browser Combinations: ${ buildDetails . combinations } ` ) ;
4239 logger . info ( parallelMessage ) ;
4340 logger . info ( `BrowserStack Dashboard: ${ buildDetails . dashboard_url } ` ) ;
0 commit comments