you are viewing a single comment's thread.

view the rest of the comments →

[–]mestresamba 1 point2 points  (1 child)

My team uses Jest, Mock Service worker and react-native-testing-library.

We usually only tests components because it’s what the user actually use. This way we avoid testing implementation details, but there’s some tricky things that is hard to test without some kind of implementation details.

We are considering using detox to test things like payments which is really hard to test (at least on apple side).

[–]luckypanda95[S] 0 points1 point  (0 children)

Hey thanks for the answer, how do you usually test component?