Nodeunit打开js文件

时间:2014-01-25 12:46:45

标签: node.js nodeunit

我正在尝试使用下一个代码运行nodeunit

exports.firstTest = function(test){
test.expect(1);
test.strictEqual("hello", "hello");
test.done();
};
exports.secondTest = function(test){
test.expect(1);
test.strictEqual("hello", "there");
test.done();
};

我在

的Windows中安装了nodeunit
npm install -g nodeunit

当我执行

nodeunit node.js 

它显示记事本中的代码,而不是运行测试

0 个答案:

没有答案