We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aec874b commit 990f069Copy full SHA for 990f069
docs/rules/use-t-throws-async-well.md
@@ -26,7 +26,7 @@ test('main', t => {
26
```js
27
import test from 'ava';
28
29
-test('main', t => {
+test('main', async t => {
30
await t.throwsAsync(somePromise);
31
await t.notThrowsAsync(somePromise);
32
const p = t.throwsAsync(somePromise);
0 commit comments