一尘不染

如何从命令行在Node.js上运行Jasmine测试

node.js

如何从命令行在Node.js上运行Jasmine测试?我已经通过npm安装了jasmine-
node并编写了一些测试。我想在spec目录中运行测试并在终端中获取结果,这可能吗?


阅读 242

收藏
2020-07-07

共1个答案

一尘不染

编辑

由于不再维护该软件包,因此这似乎不再是当前的最佳答案。请参阅下面的答案


你可以这样做

从您的测试目录

sudo npm install jasmine-node

这会将茉莉花安装到../node_modules/jasmine-node

然后

../node_modules/jasmine-node/bin/jasmine-node --verbose --junitreport --noColor spec

从我的演示中做到了

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
2020-07-07