是否可以从 nodeunit 测试文件中只运行一个测试和几个测试。我的tests.js
文件:
module.exports = {
test2: function (test) {
console.log ("test2")
test.done();
},
test1: function (test) {
console.log ("test1")
test.done();
}
};
我可以运行所有测试:
$ nodeunit tests.js
但我只想运行 test2 ,例如:
$ nodeunit tests.js test2
是否可以不将文件tests.js
拆分为 2 个单独的文件?