You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2024. It is now read-only.
We use @testing-library/react for our tests (outside of Storybook).
After updating to version 14, our tests still pass but log many errors:
Warning: An update to TemplatesRenderer inside a test was not wrapped in act(...).
This is caused by an incompatible dependency of @testing-library/dom. @testing-library/react@14 needs v9 of the DOM package but @storybook/testing-library@0.0.14-next.1 still uses v8 and because of that npm installs version 8. If we manually install v9 of the package all errors are gone (but we shouldn't have to add it as a depdency).