【发布时间】:2015-11-02 09:37:46
【问题描述】:
require('jasmine-node')
describe( "hello world", function() {
it( "a simple app", function(){
expect("1").toEqual("1")
console.log("this is a simpler application")
});
});
我正在尝试使用jasmine-node 运行上述 helloworld 程序。但它没有运行任何测试并显示消息为,
0 tests, 0 assertions, 0 failures, 0 skipped
我并不热衷于只为一个规范文件使用配置文件。
【问题讨论】:
标签: node.js jasmine jasmine-node