Skip to content

Commit

Permalink
Fix typo in use-t-throws-async-well.md (#355)
Browse files Browse the repository at this point in the history
  • Loading branch information
GMartigny committed Jan 5, 2024
1 parent aec874b commit 990f069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/use-t-throws-async-well.md
Expand Up @@ -26,7 +26,7 @@ test('main', t => {
```js
import test from 'ava';

test('main', t => {
test('main', async t => {
await t.throwsAsync(somePromise);
await t.notThrowsAsync(somePromise);
const p = t.throwsAsync(somePromise);
Expand Down

0 comments on commit 990f069

Please sign in to comment.