Jakub Mazurek
Jakub Mazurek
@robertwbradford Hi, I was also looking for a solution to test a similar use case and found this library. Unfortunately, as I understand, this library was created to test ExpressJS...
@testica Did you try to: ```js jest.mock('../middlewareA', () => { return (param) => { return jest.fn((req, res) => { res.end() }); } }); ``` I'm not sure if it will...
I'm totally fine with that. This feature could be usefull for more advance ppl. Regular users might not have to use it. And I forgot to mention that I would...
I would like to be able to import `` from `react-native-paper` Instead of ```js import Icon from 'react-native-vector-icons/MaterialCommunityIcons' ``` I could just ```js import { Icon } from 'react-native-paper' ```
Gotcha! How about adding an option to support different working directories?
I'd love this feature to validate the whole form before submitting. I have to do I manually with refs to all inputs inside a form and it's awful.
I was trying to tackle that, but it does not work with the native driver. I was looking into the android implementation of Animated Animated and Scroll view (where `onScroll`...
This is what I found also, we can fix it with some refactoring. But the problem is it does not work with `native driver ` (at least for me, when...
As I remember I was trying with `Animated`, interesting. Seems like @ShaMan123 you are on a good way to open a PR :D
Styles composition would be extremely useful once we introduce react-native support #236 We could potentially share more code between `react` and `react-native`