Ответ 1
ИЗМЕНИТЬ
Кажется, что это уже не лучший ответ, поскольку пакет не поддерживается. См. Ответ ниже
Вы можете сделать это
из тестового каталога
sudo npm install jasmine-node
Это устанавливает жасмин в. / node_modules/jasmine- node
затем
../node_modules/jasmine-node/bin/jasmine-node --verbose --junitreport --noColor spec
который из моего demo делает это
Player - 5 ms
should be able to play a Song - 2 ms
when song has been paused - 1 ms
should indicate that the song is currently paused - 0 ms
should be possible to resume - 0 ms
tells the current song if the user has made it a favorite - 1 ms
#resume - 0 ms
should throw an exception if song is already playing - 0 ms
Player - 5 ms
should be able to play a Song - 2 ms
when song has been paused - 1 ms
should indicate that the song is currently paused - 0 ms
should be possible to resume - 0 ms
tells the current song if the user has made it a favorite - 1 ms
#resume - 0 ms
should throw an exception if song is already playing - 0 ms
Finished in 0.01 seconds
5 tests, 8 assertions, 0 failures, 0 skipped