I have globally installed jasmine by running npm install jasmine -g
.
Running jasmine -v
gives me
jasmine v2.5.0
jasmine-core v2.5.0
I have then, as per the docs, run
jasmine init
jasmine examples
This created the expected /spec
directory and the spec/support/jasmine.json
file.
I am under the impression that if I now run jasmine
I should see some test output in the console. Instead it simply thinks about it for a second and then does nothing.
I'm running node v4.5.0 on a Windows 7 machine in a Git Bash terminal. I've tried running it from the Windows cmd prompt as well but that doesn't work either.
jasmine spec/jasmine_examples/PlayerSpec.js
doesn't work either – Striction