You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31-1Lines changed: 31 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -411,7 +411,37 @@ it('works 4', () => {
411
411
412
412
### recomputeOnRetry
413
413
414
-
Sometimes you want to enable test retries, but the data caching makes it hard to understand and run the full test. You can set the `recomputeOnRetry: true` to automatically call the `setup` again on tet retries.
414
+
Sometimes you want to enable [test retries](https://on.cypress.io/test-retries), but the data caching makes it hard to understand and run the full test. You can set the `recomputeOnRetry: true` to automatically call the `setup` again on tet retries.
415
+
416
+
```js
417
+
const dataSessionName = 'user v1'
418
+
// 👎 instead of this way of clearing and recreating
0 commit comments