DEV Community

Discussion on: Boilerplate - the Angular vs React difference

Collapse
 
hakimio profile image
Tomas Rimkus • Edited

While I agree that vanilla Angular testing is needlessly cumbersome, there are libraries which solve this issue. For example, I use shallow-render in all my component tests which gets rid of all the boilerplate. Would highly recommend to all Angular devs.

Collapse
 
stealthmusic profile image
Jan Wedel

We don’t usually do any DOM testing at all but use fast unit tests with jest. Instead we use Cypress for anything visual.