sheremet-va / vitest-react-native

63 stars 5 forks source link

Add support for modules with iOS/Android-specific modules #9

Closed wojtekmaj closed 1 year ago

wojtekmaj commented 1 year ago

Here's an example:

https://github.com/idrisssakhi/blurView/blob/v1.2.2/src/index.ts#L3

This does not produce an error in Jest, but it does in Vitest + vitest-react-native. There's no such thing as BlurView.js:

https://github.com/idrisssakhi/blurView/tree/v1.2.2/src/Views

but as you can see, there's BlurView.android.js and BlurView.ios.js.

Jest resolved this to BlurView.ios.js for me.