@@ -122,7 +122,6 @@ describe('Pass/Fail reporting', function() {
122
122
let config = getBaseConfig ( ) ;
123
123
browserstackRunner . run ( config , function ( err , report ) {
124
124
assert . equal ( err , null ) ;
125
- console . log ( report ) ;
126
125
var parsedReport = JSON . parse ( report ) ;
127
126
// Only failed assertions are emitted
128
127
assert . equal ( parsedReport [ "Windows 7, Chrome 52.0" ] . assertions . length , 8 ) ;
@@ -132,7 +131,6 @@ describe('Pass/Fail reporting', function() {
132
131
} ) ;
133
132
it ( 'report should have specific keys' , function ( done ) {
134
133
let config = getBaseConfig ( ) ;
135
- console . log ( JSON . stringify ( config ) ) ;
136
134
browserstackRunner . run ( config , function ( err , report ) {
137
135
assert . equal ( err , null ) ;
138
136
var parsedReport = JSON . parse ( report ) ;
@@ -148,7 +146,6 @@ describe('Pass/Fail reporting', function() {
148
146
} ) ;
149
147
it ( 'report should have message in assertions' , function ( done ) {
150
148
let config = getBaseConfig ( ) ;
151
- console . log ( JSON . stringify ( config ) ) ;
152
149
browserstackRunner . run ( config , function ( err , report ) {
153
150
assert . equal ( err , null ) ;
154
151
var parsedReport = JSON . parse ( report ) ;
0 commit comments