DEV Community

Discussion on: Are you using JavaScript Testing Frameworks?

Collapse
 
gktim profile image
gkTim

I use jest every day. It provides a good api and mocking is easy with it. For speed improvement you should try the --watch argument. You can filter which tests are executed e.g only the tests which was not successful. It executes the test when you save a file. I also use wallabyjs as an addition to get quick results directly in the IDE.