diff --git a/docs/rules/no-synchronous-tests.md b/docs/rules/no-synchronous-tests.md index 1144680..3bbb56a 100644 --- a/docs/rules/no-synchronous-tests.md +++ b/docs/rules/no-synchronous-tests.md @@ -37,7 +37,7 @@ it('should do foo', async function () { it('should do foo', function () { return promise; -} +}); ``` You can change the acceptable asynchronous test methods to only allow a combination of async functions/callbacks/promises: