Skip to content

Commit 0263f33

Browse files
remove console logs
1 parent d9e8c02 commit 0263f33

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

test/unit/bin/helpers/utils.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2396,7 +2396,6 @@ describe('utils', () => {
23962396
};
23972397

23982398
const result = utils.getNumberOfSpecFiles(bsConfig, {}, { e2e: {}});
2399-
console.log(result)
24002399
expect(result.length).to.eql(1);
24012400
expect(result[0].endsWith('cypress/e2e/foo_1.js')).to.eql(true);
24022401
sinon.assert.calledTwice(globStub)
@@ -2519,7 +2518,6 @@ describe('utils', () => {
25192518
};
25202519

25212520
const result = utils.getNumberOfSpecFiles(bsConfig, {}, null);
2522-
console.log(result)
25232521
expect(result.length).to.eql(1);
25242522
expect(result[0].endsWith('cypress/e2e/foo_1.js')).to.eql(true);
25252523
sinon.assert.alwaysCalledWithExactly(globStub, 'cypress/e2e/foo*.js', {
@@ -2547,7 +2545,6 @@ describe('utils', () => {
25472545
};
25482546

25492547
const result = utils.getNumberOfSpecFiles(bsConfig, {}, null);
2550-
console.log(result)
25512548
expect(result.length).to.eql(3);
25522549
expect(result[0].endsWith('cypress/e2e/foo_1.js')).to.eql(true);
25532550
sinon.assert.calledWithExactly(globStub, `cypress/e2e/**/*.+(${constant.specFileTypes.join('|')})`, {

0 commit comments

Comments
 (0)