Connecting React Native to localhost
This is something that happens to me on every React Native project.
React Tests — Component Tests, Async Action Tests, and Reducer Tests
Since I started developing I have always heard about testing my applications, but we would never spend much time on it. This started in college where there were some classes that gave an idea of what…
Postman CI/CD
Postman is a powerful tool. Everyone that has worked with or developed an API has probably used postman and acknowledged its power.
Unit testing with VCR
You have an application that makes HTTP calls to an external service and you have no tests for it. You want to make sure that your application behaves correctly whether those services return…
A simple trick to make your classes easier to test
I’m a firmly believer that good code is code that can be easily tested . If I can’t easily test a module or a class, it most likely means that the class has too many dependencies and/or too many…