Add coveralls config for processlist

Refs #344
This commit is contained in:
Will Abson
2016-07-22 09:29:45 +01:00
parent 5cc083120a
commit 486740fa2e
2 changed files with 4 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ module.exports = function (config) {
],
// Coverage reporter generates the coverage
reporters: ['mocha', 'coverage', 'kjhtml'],
reporters: ['mocha', 'coverage', 'coveralls', 'kjhtml'],
// Source files that you wanna generate coverage for.
// Do not include tests or libraries (these files will be instrumented by Istanbul)
@@ -80,9 +80,9 @@ module.exports = function (config) {
subdir: 'report',
reporters: [
{type: 'text'},
{type: 'text-summary'},
{type: 'json', file: 'coverage-final.json'},
{type: 'html'}
{type: 'html'},
{type: 'lcov'}
]
}
})