我創造了這個咕嚕任務,以幫助確定未明確由他們自己的測試套件
grunt.registerTask('missingSpecs', 'Missing specs list', function (env, limit) {
var specs = getFileList(getSpecs(env)),
src = getFileList(getSrc(env)),
missingSpecs = [];
for (var file in src) {
if (specs.indexOf(src[file]) === -1) {
missingSpecs.push(src[file]);
}
}
if (missingSpecs.length) {
console.log(
'\n******************************************************************************************************\n' +
'*** The following common js files aren\'t covered by any tests. They won\'t write themselves, y\'know ***\n' +
'******************************************************************************************************\n'
);
missingSpecs.sort(function() {
return Math.random() - 0.5;
}).slice(0,limit).forEach(function (file) {
console.log(file);
});
}
})
凡getFileList使用grunt.file.expand和一些正則表達式來獲得模塊名稱的列表覆蓋文件。