DEV Community

Discussion on: Migrate from Jasmine to Jest and Testing Library in Angular

Collapse
 
danywalls profile image
Dany Paredes Playful Programming Angular

Hi, the package @testing-library/angular extends DOM Testing library adding APIs for working with Angular components easy, like simplify detect changes etc.

You don't need to delete the test generate by angular-cli, by default is compatible with Jest. You will start to use the jest functions instead of jasmine.

Collapse
 
ronaldohoch profile image
Ronaldo Hoch

hmm, i understood! Thank you.