Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAaron Johnson
4,998 PointsWe're setting up a new system to run our tests. Issue the command to install Mocha globally?
my answer is not passing: Command Prompt: $ npm install --global mocha
2 Answers
Steven Parker
232,176 PointsThe challenge only wants the command that you would enter, so don't include the "Command Prompt: $ " part.
Ari Misha
19,323 Pointshiya Aaron! Is it a challenge question or you tried to install mocha on your local machine and it failed? If you're running it on your local machine try running via Bower, like this
$ bower install mocha
Make sure of version of mocha and it dependencies. To install Mocha v3.0.0 or newer with npm, you will need npm v1.4.0 or newer. Additionally, to run Mocha, you will need Node.js v0.10 or newer. Do that and you're good to go.
But ideally "npm install --global mocha" should work. Maybe try it without the global flag. "npm install mocha". I hope it helped. (:
Deloris Luckett
6,418 Pointsits npm install mocha -g