diff --git a/docs/rules/use-t-throws-async-well.md b/docs/rules/use-t-throws-async-well.md index 098b351..1c72763 100644 --- a/docs/rules/use-t-throws-async-well.md +++ b/docs/rules/use-t-throws-async-well.md @@ -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);