2013-09-22 12 views
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なしに可能ですファイル?

答えて

6

使用可能なオプションのための -h nodeunit(これは、バージョン0.8.1のためです)を参照してください:次はあなたがやりたいことをすべきであるから、だから、

Usage: nodeunit [options] testmodule1.js testfolder [...] 
Options: 

    --config FILE  the path to a JSON file with options 
    --reporter FILE optional path to a reporter file to customize the output 
    --list-reporters list available build-in reporters 
    -t name,   specify a test to run 
    -f fullname,  specify a specific test to run. fullname is built so: "outerGroup - .. - innerGroup - testName" 
    -h, --help  display this help and exit 
    -v, --version  output version information and exit 

を:

$ nodeunit tests.js -t test2 

例えば:

$ nodeunit ./tests.js -t test2 

tests.js 
test2 
✔ test2 
関連する問題