Skip to content

Commit

Permalink
docs: update user guide
Browse files Browse the repository at this point in the history
  • Loading branch information
tom9744 committed May 3, 2024
1 parent f725f55 commit 8696387
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/no-pause.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Examples of **incorrect** code for this rule:

```js
cy.pause();
cy.get('selector').pause();
```

Examples of **correct** code for this rule:

```js
// only the parent cy.pause command is detected
cy.get('selector').pause();
cy.get('selector')
```

0 comments on commit 8696387

Please sign in to comment.