DEV Community

Discussion on: How I set my Linux computer for coding

Collapse
 
patryktech profile image
Patryk

Jest is great for unit tests, and some integration tests.

Cypress is amazing for end-to-end testing. I love watching it open a browser, and interact with my site in a full-fledged UI.

Biggest reason tests take time away from dev sometimes is because of how much I just love watching them run 😅

Thread Thread
 
mendoza profile image
David Mendoza (He/Him)

I can tell that I do love watching them, but I don't think that they are necessary 100% especially if you are testing while coding,
I have used jest for integration, but never for unit.