DEV Community

Discussion on: Tasty Testing with Mocha and Chai ☕️

Collapse
 
manuelbarzi profile image
manuelbarzi

you should NOT install mocha and chai as a DEPENDENCY, BUT as a DEV-DEPENDECY.

$ npm i -D mocha chai

testing tools are dependencies for development, not for delivery.

Collapse
 
basedenergy profile image
Devin Golden

Thanks for the heads up! I'll update the post and take that into account for the future