Skip to content

Commit

Permalink
Add emma support
Browse files Browse the repository at this point in the history
  • Loading branch information
hpychan committed Sep 7, 2011
1 parent 0c71eb9 commit e9094fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/vows/coverage/report-emma.js
Expand Up @@ -92,10 +92,10 @@ this.report = function (coverageMap) {
var buffer = []; var buffer = [];
buffer.push(tag('report', {}, false)); buffer.push(tag('report', {}, false));
buffer.push(tag('stats', {}, false)); buffer.push(tag('stats', {}, false));
buffer.push(tag('packages', { value: 1 }, false)); buffer.push(tag('packages', { value: 1 }, true));
buffer.push(tag('classes', { value: 1 }, false)); buffer.push(tag('classes', { value: 1 }, true));
buffer.push(tag('srcfiles', { value: output.files.length }, false)); buffer.push(tag('srcfiles', { value: output.files.length }, true));
buffer.push(tag('srclines', { value: totalsloc }, false)); buffer.push(tag('srclines', { value: totalsloc }, true));
buffer.push(end('stats')); buffer.push(end('stats'));


buffer.push(tag('data', {}, false)); buffer.push(tag('data', {}, false));
Expand Down

0 comments on commit e9094fe

Please sign in to comment.