Clarify coverage report

This commit is contained in:
Andrey Lushnikov 2017-07-27 17:32:02 -07:00
parent d1f2c01db5
commit f1a4598cc1

View File

@ -1407,7 +1407,7 @@ describe('Puppeteer', function() {
});
if (process.env.COVERAGE) {
describe('API', function(){
describe('COVERAGE', function(){
let coverage = helper.publicAPICoverage();
let disabled = new Set();
if (headless) {
@ -1418,7 +1418,7 @@ if (process.env.COVERAGE) {
}
for (let method of coverage.keys()) {
(disabled.has(method) ? xit : it)(`public method '${method}' was tested`, SX(async function(){
(disabled.has(method) ? xit : it)(`public method '${method}' should be called`, SX(async function(){
expect(coverage.get(method)).toBe(true);
}));
}