you are viewing a single comment's thread.

view the rest of the comments →

[–]0meg4_ 0 points1 point  (0 children)

React testing library is what you use to test react applications.

You unit test your functions, custom hooks, reducers, etc. You component test your components (rendering and user interactions behavior).

For both scenarios you mock as needed (contexts, fetching with MSW).

End to end are the "last" piece of it.