File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ describe('Local', function () {
35
35
} ) ;
36
36
} ) ;
37
37
38
- it ( 'should throw error on running multiple binary' , function ( done ) {
38
+ it . skip ( 'should throw error on running multiple binary' , function ( done ) {
39
39
this . timeout ( 60000 ) ;
40
40
bsLocal . start ( { 'key' : process . env . BROWSERSTACK_ACCESS_KEY } , function ( error ) {
41
41
bsLocal_2 = new browserstack . Local ( ) ;
@@ -246,7 +246,7 @@ describe('Start sync', () => {
246
246
expect ( bsLocal . isRunning ( ) ) . to . equal ( true ) ;
247
247
} ) ;
248
248
249
- it ( 'should throw error on running multiple binary' , function ( ) {
249
+ it . skip ( 'should throw error on running multiple binary' , function ( ) {
250
250
this . timeout ( 60000 ) ;
251
251
bsLocal . startSync ( { 'key' : process . env . BROWSERSTACK_ACCESS_KEY } ) ;
252
252
bsLocal_2 = new browserstack . Local ( ) ;
@@ -261,6 +261,8 @@ describe('Start sync', () => {
261
261
bsLocal . stop ( ( ) => {
262
262
if ( bsLocal_2 ) {
263
263
bsLocal_2 . stop ( done ) ;
264
+ } else {
265
+ done ( ) ;
264
266
}
265
267
} ) ;
266
268
} ) ;
You can’t perform that action at this time.
0 commit comments