Daniel Diaz
Daniel Diaz
It looks like it was added back in #39? However, when I attempt to add `minItems` to an array type in my `swagger.yaml` and I run ``` java -jar ~/swagger-codegen/swagger-codegen-cli-2.2.3.jar...
@jfairbank I can do some examples with Jest, using this in our current project.
This is the closest issue we found when trying to write a test for a component that uses `react-native-animatable`'s wrapped `View` component. We were getting a `TypeError: Cannot read property...
@markhaasjes Perhaps you can mock animatable directly? ``` jest.mock('react-native-animatable', () => 'react-native-animatable'); ```
Now try my suggestion per a few posts above, but mock initializedRegistryWithDefinitions. ``` import { View } from 'react-native'; const initializeRegistryWithDefinitions = jest.fn(); export { View, initializeRegistryWithDefinitions }; ```
Hello! I will look into updating the docs. Where exactly would be the right place to specify Python 2.x functionality?
I am currently looking into making the WelcomeBot compatible to python 3. Asheesh shared some links on irc such as [this](http://docs.pythonsprints.com/python3_porting/py-porting.html) and [this](https://docs.python.org/3/howto/pyporting.html) Would a library such as [six](https://pypi.python.org/pypi/six) be...
@cikai Keep us updated if you find a workaround.