File size: 447 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# Disallow using `cy.pause()` calls (`cypress/no-pause`)
<!-- end auto-generated rule header -->
It is recommended to remove any [cy.pause](https://on.cypress.io/pause) commands before committing specs to avoid other developers getting unexpected results.
## Rule Details
Examples of **incorrect** code for this rule:
```js
cy.pause();
cy.get('selector').pause();
```
Examples of **correct** code for this rule:
```js
cy.get('selector')
```
|