File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -2396,7 +2396,6 @@ describe('utils', () => {
2396
2396
} ;
2397
2397
2398
2398
const result = utils . getNumberOfSpecFiles ( bsConfig , { } , { e2e : { } } ) ;
2399
- console . log ( result )
2400
2399
expect ( result . length ) . to . eql ( 1 ) ;
2401
2400
expect ( result [ 0 ] . endsWith ( 'cypress/e2e/foo_1.js' ) ) . to . eql ( true ) ;
2402
2401
sinon . assert . calledTwice ( globStub )
@@ -2519,7 +2518,6 @@ describe('utils', () => {
2519
2518
} ;
2520
2519
2521
2520
const result = utils . getNumberOfSpecFiles ( bsConfig , { } , null ) ;
2522
- console . log ( result )
2523
2521
expect ( result . length ) . to . eql ( 1 ) ;
2524
2522
expect ( result [ 0 ] . endsWith ( 'cypress/e2e/foo_1.js' ) ) . to . eql ( true ) ;
2525
2523
sinon . assert . alwaysCalledWithExactly ( globStub , 'cypress/e2e/foo*.js' , {
@@ -2547,7 +2545,6 @@ describe('utils', () => {
2547
2545
} ;
2548
2546
2549
2547
const result = utils . getNumberOfSpecFiles ( bsConfig , { } , null ) ;
2550
- console . log ( result )
2551
2548
expect ( result . length ) . to . eql ( 3 ) ;
2552
2549
expect ( result [ 0 ] . endsWith ( 'cypress/e2e/foo_1.js' ) ) . to . eql ( true ) ;
2553
2550
sinon . assert . calledWithExactly ( globStub , `cypress/e2e/**/*.+(${ constant . specFileTypes . join ( '|' ) } )` , {
You can’t perform that action at this time.
0 commit comments