How do I run Jasmine tests on Node.js from command line? I have installed jasmine-node via npm and written some tests. I want to run tests inside the spec direc
spec
The easiest way is to run the command in your project root:
$ npx humile
It founds all your specs which name ends with .spec.js.
.spec.js
If you think humile is fine for your project, just install it as dev dependency. It speeds up the command.
$ npm install -D humile