我想在MOCHA JS測試中獲得代碼覆蓋率。我正在使用毯子,但我得到0%的覆蓋率0 SLOC爲什麼我不理解。 我的package.json是我正在使用毛毯覆蓋0 SLOC摩卡密碼
{
"name": "basics",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha && mocha test --require blanket --reporter html-cov > coverage.html"
},
"author": "",
"license": "MIT",
"devDependencies": {
"chai": "~2.2.0",
"mocha": "~2.2.4",
"blanket": "~1.1.6",
},
"config": {
"blanket": {
"pattern": ["index.js"],
"data-cover-never": "node_modules"
}
}
}
和index.js是
exports.sanitize = function(word){
return word.toLowerCase().replace(/-/g, ' ');
}
exports.testToString = function(){
return word.toLowerCase().replace(/-/g, ' ');
}
和indexSpec.js這是測試文件夾下是從混帳回購協議
var chai = require('chai');
var expect = require('chai').expect;
var word = require('../index.js');
describe ('sanitize', function(){
it('String matching ', function(){
var inputWord = 'hello WORLD';
var outputWord = word.sanitize(inputWord);
expect(outputWord).to.equal('hello world');
expect(outputWord).to.not.equal('HELLO WORLD');
expect(outputWord).to.be.a('string');
expect(outputWord).not.to.be.a('number');
});
it('Checke hyphen ', function(){
var inputWord = 'hello-WORLD';
var outputWord = word.sanitize(inputWord);
expect(outputWord).to.equal('hello world');
});
})
我有完全相同的問題,你有沒有解決這個問題?我的package.json腳本和配置看起來與你的一樣。 – Dustin
我也有這個確切的問題。 –
當我安裝最新的節點js時,此問題得到解決 – user993158