Skip to content

Commit

Permalink
chore: remove json string syntax (#5557)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaffrepaul authored Nov 7, 2023
1 parent 1d093e6 commit c233e58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/guides/guides/test-retries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ by passing the `retries` option an object with the following options:

```jsx
{
"retries": {
retries: {
// Configure retry attempts for `cypress run`
// Default is 0
"runMode": 2,
runMode: 2,
// Configure retry attempts for `cypress open`
// Default is 0
"openMode": 0
openMode: 0
}
}
```
Expand All @@ -137,7 +137,7 @@ by defining the `retries` property and setting the desired number of retries.

```jsx
{
"retries": 1
retries: 1
}
```

Expand Down

0 comments on commit c233e58

Please sign in to comment.