From 95d0e9da1b61c8b0a569a899a56b822d9fade3ba Mon Sep 17 00:00:00 2001 From: zaicevas Date: Thu, 13 Jan 2022 14:42:33 +0200 Subject: [PATCH] fix(no-unnecessary-act): isStrict is enabled by default --- docs/rules/no-unnecessary-act.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}]