モジュールがあり、mocha-phantomjs を使用してこのモジュールをテストしています。package.json
ファイルを作成しました
{
"name" : "demo-test",
"scripts": {
"test": "npm run test-debug",
"test-debug": "mocha-phantomjs ./test/Test1.html"
},
"dependencies" : {
"mocha" : "1.13.x",
"commander" : "1.2.x",
"which" : "~1.0.5",
"mocha-phantomjs": "3.3.2"
},
"devDependencies" : {
"chai" : "1.8.x",
"coffee-script" : "1.6.x",
"requirejs" : "2.1.x",
"jquery" : "2.1.0"
}
}
次に、実行npm install
しnpm test
てからテストを実行します。正常に動作し、のテストを実行しますtest1.html
。ここで、test ディレクトリの下のすべてのファイル (test1、test2、...) が実行時に実行されるようにしますnpm test
。
package.json ファイルで個別に呼び出して、すべての html ファイルを実行できますが、すべての Html ファイルをロードする方法がある場合。