We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5d2b53 commit f8be152Copy full SHA for f8be152
docs/03-assertions.md
@@ -288,7 +288,7 @@ const twoRandomIntegers = () => {
288
test('flaky macro', async t => {
289
const firstTry = await t.try((tt, a, b) => {
290
tt.is(a, b);
291
- }, ...randomIntegers());
+ }, ...twoRandomIntegers());
292
293
if (firstTry.passed) {
294
firstTry.commit();
@@ -300,7 +300,7 @@ test('flaky macro', async t => {
300
301
const secondTry = await t.try((tt, a, b) => {
302
303
304
secondTry.commit();
305
});
306
```
0 commit comments