eslint-plugin-cypress
Version:
An ESLint plugin for projects using Cypress
20 lines (13 loc) • 447 B
Markdown
is recommended to remove any [cy.debug](https://on.cypress.io/debug) commands before committing specs to avoid other developers getting unexpected results.
Examples of **incorrect** code for this rule:
```js
cy.debug();
cy.get('selector').debug();
```
Examples of **correct** code for this rule:
```js
cy.get('selector')
```
<!-- end auto-generated rule header -->
It