Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having trouble getting Mocha to work as expected, and I'd love to say as documented, but there (appears) to not be much documentation on actually getting the thing running.

I've installed it using npm (both globally and locally), and each time when I run it I get,

$ mocha
mocha: command not found

Ok, so I figured it's not in my PATH, so I tried running it directly,

$ ./node_modules/mocha/bin/mocha 
execvp(): No such file or directory

Finally, I tried hitting the other bin file, and got,

$ ./node_modules/mocha/bin/_mocha 
path.existsSync is deprecated. It is now called `fs.existsSync`.

  .

  ✔ 1 tests complete (1ms)

Forgive if this is a stupid question as I'm new to Node.js, but how can I just execute my tests with a single command? Vows seems to let you, but I've heard Mocha is the better choice, I just can't seem to get it working correctly.

And any thoughts on the error I got above in my third attempt?

Thanks,

Steve

Edit:

I'm running,

  • Ubuntu 11.10 64-bit
  • Node.js 0.7.5
  • npm 1.1.8
  • mocha 0.14.1
  • should 0.6.0
share|improve this question
1  
With node 0.6.12, npm 1.1.4, and executing npm install mocha, I get ./node_modules/.bin/mocha as expected. sudo npm install -g mocha gets me /usr/local/bin/mocha. If this doesn't work properly in your environment, it might be a bug, or just mocha not updated to support node 0.7.*. Regarding your deprecation warning, exists and existsSync were moved from path to fs in node 0.7.1. – Linus G Thiel Mar 15 '12 at 15:39
I downgraded to Node.js 0.6.12, added "./node_modules/.bin" to my PATH, and all is right with the world. – Stephen Melrose Mar 15 '12 at 16:19

1 Answer

up vote 3 down vote accepted

After further reading, and confirmation from Linus G Thiel above, I found I simply had to,

  • Downgrade to Node.js 0.6.12
  • And either,
    • Install Mocha as global
    • Add ./node_modules/.bin to my PATH
share|improve this answer
1  
I have node 0.8.12 and mocha both globally and locally installed (for different projects), and they are working. So no need to downgrade node. For locally installed mocha, just make sure your PATH is set as above, or call it directly from your script (Makefile or "scripts" tag). – Qichao Dong Oct 16 '12 at 17:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.