How to speed up your integration tests
In this post, I'll show you how we speed up the build process for one of our clients. Now they can run 40% more builds on the same budget.
I must admit I’m a huge fan of unit tests. Some of my early blog posts are about unit testing.
Unit tests are f...
akoskm.com4 min read
Cathal Mac Donnacha
Follow me on my journey as I write about tech topics I face in my everyday life as a Frontend Developer 💻
I do like the approach of combing related tests. However, if using Jest, the test will timeout if run time exceeds 5 seconds. What would you do this scenario? Increase the jest timeout? Or split the tests so they are under 5 seconds each.