Manuel de la Torre

Results 13 comments of Manuel de la Torre

This is merged now. Upgrade to v5.1.2 and the warning should disappear.

Same on my project. `5.0.0` puts the `testID` in the `TextInput` element (for inputs), while `5.0.1` puts it in the `TouchableWithoutFeedback` element, breaking a ton of tests. I think the...

Please merge this 🙏

Hello @marcusaaronb could you share more information about the problem? like: * how you are importing the module? * your nodejs version? * The version of `countries-and-timezones`?

I have a similar problem. I'm trying to mock a module with `unstable_mockModule` using a relative path: ```js jest.unstable_mockModule('../getCertificate', async () => ({ getCertificate: jest.fn().mockResolvedValue(certificate), })); ``` But I get...

Another use case: I tried to store the key in AWS Secret Manager, it doesn't support files but plain text.

I found the solution. You can transform the input to base64: ```sh openssl base64 -in [input path] -out [output path] ``` And to decode it: ```sh openssl base64 -d -in...

Hi @mwyld that's a good idea. I'll add it to the backlog and hope to release it soon.

Hi @RFUENTESEDUCEM Thanks for reporting the problem. I wasn´t aware of this, can you share an example? Some possible solutions are: 1. Immediate solution: your application ignores the error when...

Is this related? https://github.com/akveo/react-native-ui-kitten/issues/1801