diff --git a/docs/rules/no-unnecessary-act.md b/docs/rules/no-unnecessary-act.md index 7b8fd0f1..49bc122d 100644 --- a/docs/rules/no-unnecessary-act.md +++ b/docs/rules/no-unnecessary-act.md @@ -91,7 +91,7 @@ await act(async () => { This rule has one option: -- `isStrict`: **disabled by default**. Wrapping both things related and not related to Testing Library in `act` is reported +- `isStrict`: **enabled by default**. Wrapping both things related and not related to Testing Library in `act` is reported ```js "testing-library/no-unnecessary-act": ["error", {"isStrict": true}]