我正在尝试使用下一个代码运行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中安装了nodeunitnpm install -g nodeunit
当我执行
时nodeunit node.js
它显示记事本中的代码,而不是运行测试