Skip to content

Commit

Permalink
Fix typo in common pitfalls doc
Browse files Browse the repository at this point in the history
  • Loading branch information
bricker committed Sep 24, 2023
1 parent e81f413 commit 0d7bbd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/08-common-pitfalls.md
Expand Up @@ -112,7 +112,7 @@ test('increment twice', async t => {
});
```

Concurrent tests allow for asynchronous tests to execute more quickly, but if they rely on shared state you this may lead to unexpected test failures. If the shared state cannot be avoided, you can execute your tests serially:
Concurrent tests allow for asynchronous tests to execute more quickly, but if they rely on shared state this may lead to unexpected test failures. If the shared state cannot be avoided, you can execute your tests serially:

```js
import test from 'ava';
Expand Down

0 comments on commit 0d7bbd5

Please sign in to comment.