8000 Use dot reporter for code coverage so it doesn't overflow Travis-CI's… · wheercool/TypeScript@d81c884 · GitHub
[go: up one dir, main page]

Skip to content

Commit d81c884

Browse files
committed
Use dot reporter for code coverage so it doesn't overflow Travis-CI's log limit
1 parent 80ce0a9 commit d81c884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ task("runtests", ["tests", builtLocalDirectory], function() {
369369

370370
desc("Generates code coverage data via instanbul")
371371
task("generate-code-coverage", ["tests", builtLocalDirectory], function () {
372-
var cmd = "istanbul cover node_modules/mocha/bin/_mocha -- " + run;
372+
var cmd = "istanbul cover node_modules/mocha/bin/_mocha -- -R dot " + run;
373373
console.log(cmd);
374374
exec(cmd);
375375
}, { async: true });

0 commit comments

Comments
 (0)
0