From 6f2a2089ff0ae0d5b20784d29a288e407ec31706 Mon Sep 17 00:00:00 2001 From: Guillaume Martigny Date: Fri, 5 Jan 2024 13:49:36 +0100 Subject: [PATCH] Fix typo in use-t-throws-async-well.md --- docs/rules/use-t-throws-async-well.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);