File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -166,9 +166,9 @@ suite('selenium', function() {
166
166
167
167
try {
168
168
console . log ( 'Using Firefox: ' + firefoxStableBinaryPath ) ;
169
- console . log ( 'Version: ' + childProcess . execSync ( firefoxStableBinaryPath + ' --version' ) ) ;
170
- console . log ( 'Beta Version: ' + childProcess . execSync ( firefoxBetaBinaryPath + ' --version' ) ) ;
171
- console . log ( 'Aurora Version: ' + childProcess . execSync ( firefoxAuroraBinaryPath + ' --version' ) ) ;
169
+ console . log ( 'Version: ' + childProcess . execSync ( firefoxStableBinaryPath + ' --version' ) . replace ( '\n' , '' ) ) ;
170
+ console . log ( 'Beta Version: ' + childProcess . execSync ( firefoxBetaBinaryPath + ' --version' ) . replace ( '\n' , '' ) ) ;
171
+ console . log ( 'Aurora Version: ' + childProcess . execSync ( firefoxAuroraBinaryPath + ' --version' ) . replace ( '\n' , '' ) ) ;
172
172
} catch ( e ) { }
173
173
174
174
if ( process . env . GCM_API_KEY && ! fs . existsSync ( chromeBinaryPath ) ) {
@@ -177,7 +177,7 @@ suite('selenium', function() {
177
177
178
178
try {
179
179
console . log ( 'Using Chromium: ' + chromeBinaryPath ) ;
180
- console . log ( 'Version: ' + childProcess . execSync ( chromeBinaryPath + ' --version' ) ) ;
180
+ console . log ( 'Version: ' + childProcess . execSync ( chromeBinaryPath + ' --version' ) . replace ( '\n' , '' ) ) ;
181
181
} catch ( e ) { }
182
182
} ) ;
183
183
} ) ;
You can’t perform that action at this time.
0 commit comments