Skip to content

Commit 2dc70c3

Browse files
committed
Avoid logging certain calls to cy.wrap
1 parent 686f72e commit 2dc70c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/create-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ function createPickle(
475475
})
476476
.then((start) => {
477477
const ensureChain = (value: any): Cypress.Chainable<any> =>
478-
Cypress.isCy(value) ? value : cy.wrap(value);
478+
Cypress.isCy(value) ? value : cy.wrap(value, { log: false });
479479

480480
return ensureChain(
481481
registry.runStepDefininition(this, text, argument)

0 commit comments

Comments
 (0)