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
npm install mocha, I get./node_modules/.bin/mochaas expected.sudo npm install -g mochagets 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,existsandexistsSyncwere moved frompathtofsin node 0.7.1. – Linus G Thiel Mar 15 '12 at 15:39