Description
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
DOM Environment: jsdom or happy-dom (happens with both)
Problem description:
After upgrading to @testing-library/react@13.x and react@18.x with vitest
. A lot of react tests throw the following warning:
Warning: The current testing environment is not configured to support act(...)
I noticed this after switching from jest to vitest, and not changing anything else. (The tests do not show this warning when using jest, but they they show it when using vitest in the same project).
I previously had an unrelated issue causing the same warning with Jest: #1057
I resolved that, by removing a bad implementation of act()
. However this time the tests are identical, and works with 1 test-runner and not with another.
Reproduction:
Credit to @stuarthallows for creating a repo that reproduces the problem: https://github.com/stuarthallows/vitest-error
@stuarthallows and @dar5hak also both seem to be having the same problem as me (see my other issue here: #1057 for more details).
Additional information.
In my case, this is breaking unit tests completely because it logs thousands of these warnings and it just stops after around 10 tests are completed.
For me a lot of the errors start with rc-motion
Warning: The current testing environment is not configured to support act(...)
at Align (/Users/marklyck/colony/colony-frontend/node_modules/.pnpm/rc-align@4.0.12_ef5jwxihqo6n7gxfmzogljlgcm/node_modules/rc-align/lib/Align.js:45:23)
at DomWrapper (/Users/marklyck/colony/colony-frontend/node_modules/.pnpm/rc-motion@2.5.1_ef5jwxihqo6n7gxfmzogljlgcm/node_modules/rc-motion/lib/DomWrapper.js:28:34)
at /Users/marklyck/colony/colony-frontend/node_modules/.pnpm/rc-motion@2.5.1_ef5jwxihqo6n7gxfmzogljlgcm/node_modules/rc-motion/lib/CSSMotion.js:57:32
Which is probably running an animation with antd components. But I'm 99% sure that's a red-herring since the same tests and components work just fine with jest. (or testing-library/react@12 and react@17)