File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ var getRandomPorts = function() {
2626var getPackage = function ( ) {
2727 if ( ! pkg ) {
2828
29- // Search up the folder hierarchy for the first package.json
29+ // Search up the folder hierarchy for the first package.json
3030 var packageFolder = path . resolve ( '.' ) ;
3131 while ( ! fs . existsSync ( path . join ( packageFolder , 'package.json' ) ) ) {
3232 var parent = path . dirname ( packageFolder ) ;
3333 if ( parent === packageFolder ) { break ; }
3434 packageFolder = parent ;
3535 }
3636 pkg = JSON . parse ( fs . readFileSync ( path . join ( packageFolder , 'package.json' ) , 'UTF-8' ) ) ;
37-
37+
3838 }
3939
4040 return pkg ;
@@ -225,7 +225,7 @@ module.exports = {
225225 } ,
226226
227227
228- updateWebdriver : function ( done ) {
228+ updateWebdriver : function ( done ) {
229229 if ( process . env . TRAVIS ) {
230230 // Skip the webdriver-manager update on Travis, since the browsers will
231231 // be provided remotely.
You can’t perform that action at this time.
0 commit comments