gulp.task('report-coverage', function() {
  return gulp
    .src('./coverage/**/lcov.info')
    .pipe(debug())
    .pipe(coveralls());