From 990f0691cf790ffe38dea4608ff8919a8a8886db Mon Sep 17 00:00:00 2001 From: Guillaume Martigny Date: Fri, 5 Jan 2024 22:22:10 +0100 Subject: [PATCH] Fix typo in use-t-throws-async-well.md (#355) --- 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);