@@ -122,7 +122,6 @@ describe('Pass/Fail reporting', function() {
122122 let config = getBaseConfig ( ) ;
123123 browserstackRunner . run ( config , function ( err , report ) {
124124 assert . equal ( err , null ) ;
125- console . log ( report ) ;
126125 var parsedReport = JSON . parse ( report ) ;
127126 // Only failed assertions are emitted
128127 assert . equal ( parsedReport [ "Windows 7, Chrome 52.0" ] . assertions . length , 8 ) ;
@@ -132,7 +131,6 @@ describe('Pass/Fail reporting', function() {
132131 } ) ;
133132 it ( 'report should have specific keys' , function ( done ) {
134133 let config = getBaseConfig ( ) ;
135- console . log ( JSON . stringify ( config ) ) ;
136134 browserstackRunner . run ( config , function ( err , report ) {
137135 assert . equal ( err , null ) ;
138136 var parsedReport = JSON . parse ( report ) ;
@@ -148,7 +146,6 @@ describe('Pass/Fail reporting', function() {
148146 } ) ;
149147 it ( 'report should have message in assertions' , function ( done ) {
150148 let config = getBaseConfig ( ) ;
151- console . log ( JSON . stringify ( config ) ) ;
152149 browserstackRunner . run ( config , function ( err , report ) {
153150 assert . equal ( err , null ) ;
154151 var parsedReport = JSON . parse ( report ) ;
0 commit comments