-
|
I see that there are now two different ways to to test component interactions, the first is using jest and testing library manually so to speak. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
We're still building it! 6.4's interactive stories are the foundation for this. In 6.5, we will release a Jest-based test runner that makes them easy to run these tests in CI. We plan to extend the test runner with other kinds of tests in subsequent releases. We hope this will become a simple yet powerful way to test UI in isolation. Where does this leave What should you do today? If you need something immediately, the "manual" approach is your only option. The 6.4 release (currently in RC) is intended to give our community a taste of what's to come and help us to collect feedback on this direction. If you want to help shape this direction and don't mind using experimental software I'd definitely recommend kicking the tires. |
Beta Was this translation helpful? Give feedback.
We're still building it!
6.4's interactive stories are the foundation for this. In 6.5, we will release a Jest-based test runner that makes them easy to run these tests in CI. We plan to extend the test runner with other kinds of tests in subsequent releases. We hope this will become a simple yet powerful way to test UI in isolation.
Where does this leave
@storybook/testing-react/vue/etc? We will continue to maintain improve this as well. Users who don't mind a more manual approach will have more flexibility to work with other test runners, different test styles, and so on. Storybook strives for broad compatibility, and this is how we plan to achieve that in testing.What should you do to…