Hi Ishan, I had this same issue. The jasmine-node executable includes the line '#!/usr/bin/env node' - which means it should be run with the binary named 'node'. However if you've installed node.js via a debian/ubuntu package manager the node.js binary is named 'nodejs', and 'node' refers to a different package altogether.
The solution is to remove the 'node' package (presuming you don't need it): *sudo apt-get remove node* Then symlink 'nodejs' to 'node': *sudo ln -s /usr/bin/nodejs /usr/bin/node* Sean. On Sunday, 1 February 2015 18:00:01 UTC, Ishan Gupta wrote: > > Hi folks, > > I am trying to use Jasmine-Node in my ubuntu machine. I am little bit > unfortunate in using it and need help. > I installed the module globally using "npm install -g jasmine-node" . It > installed successfully but whenever i am trying to run my spec files it > doesn't show any output. > I might be missing something. Please help me, i am new to node.js. > > Best, > Ishan > > -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/6a4da959-185b-41d8-9dcc-0395e66f5a55%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
