我有一个模块,我正在使用 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 文件中单独调用 then 来运行所有 html 文件,但如果有办法加载所有 Html 文件。