6
複数のテストでnodeunitテストファイルから1つのテストのみを実行できますか?マイtests.js
ファイル:1つのnodeunitファイルから1つのテストを名前で実行する
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
が、それは別の2にファイルtests.js
をsplitingなしに可能ですファイル?