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 1
1
const logger = require ( "./logger" ) . winstonLogger ,
2
2
Constants = require ( "./constants" ) ,
3
- Util = require ( "./util " ) ;
3
+ Utils = require ( "./utils " ) ;
4
4
5
5
const caps = ( bsConfig , zip ) => {
6
6
return new Promise ( function ( resolve , reject ) {
@@ -96,11 +96,11 @@ const validate = (bsConfig, args) => {
96
96
if ( ! bsConfig . run_settings . cypress_proj_dir ) reject ( Constants . validationMessages . EMPTY_SPEC_FILES ) ;
97
97
98
98
// validate parallels specified in browserstack.json if parallels are not specified via arguments
99
- if ( Util . isUndefined ( args . parallels ) && ! Util . isParallelValid ( bsConfig . run_settings . parallels ) ) {
99
+ if ( Utils . isUndefined ( args . parallels ) && ! Utils . isParallelValid ( bsConfig . run_settings . parallels ) ) {
100
100
reject ( Constants . validationMessages . INVALID_PARALLES_CONFIGURATION ) ;
101
101
}
102
102
// if parallels specified via arguments validate both parallels specifed in browserstack.json and parallels specified in arguments
103
- if ( ! Util . isUndefined ( args . parallels ) && ! Util . isParallelValid ( args . parallels ) ) reject ( Constants . validationMessages . INVALID_PARALLES_CONFIGURATION ) ;
103
+ if ( ! Utils . isUndefined ( args . parallels ) && ! Utils . isParallelValid ( args . parallels ) ) reject ( Constants . validationMessages . INVALID_PARALLES_CONFIGURATION ) ;
104
104
105
105
106
106
if ( ! args . parallels ) {
You can’t perform that action at this time.
0 commit comments