DEV Community

Discussion on: Testing Microservices: A Layered Testing Strategy

Collapse
 
0916dhkim profile image
Danny Kim

This article is insightful! I am automating tests for a React application, and I would like to get your advice. Do developers run integration tests on their local machines, or do you let CI handle integration tests?
I tried to mock an ORM to let my teammates run (partial) integration tests without running local db in the background. Ultimately, my team lead decided running a local db is less hassle than mocking an ORM, so I ended up not mocking it.
I wonder what other teams are doing with their integration tests.