Cypress.currentRetry
Cypress.currentRetry
is a number representing the current
test retry count.
Note that Cypress.currentRetry
may only be used inside tests and
test hooks, and will
be null
outside of tests and test hooks.
Syntax
Cypress.currentRetry
Examples
Get current test retry
it('example', () => {
expect(Cypress.testRetry).to.eq(0)
})
History
Version | Changes |
---|---|
12.3.0 | Added Cypress.currentRetry |