Skip to content

Commit

Permalink
test(coverage): disabling cookbook coverage aggregation
Browse files Browse the repository at this point in the history
Looks like gulp-istanbul-reporter uses an out-of-date version of the instanbul module, which expects

a report format incompatible with the newer version that comes with nyc. Disabling aggregation for

now until I remove the dependency on gulp-istanbul-reporter and let it rest in peace.
  • Loading branch information
jan-molak committed Dec 21, 2016
1 parent 6819623 commit 896f1d3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gulpfile.js
Expand Up @@ -76,8 +76,7 @@ gulp.task('aggregate', () => {
return merge([
remapCoverageToTypescript(dirs.staging.reports.coverage.spec),
remapCoverageToTypescript(dirs.staging.reports.coverage.behaviour.protractor),
remapCoverageToTypescript(dirs.staging.reports.coverage.behaviour.cucumber),
gulp.src(dirs.staging.reports.coverage.cookbook)
remapCoverageToTypescript(dirs.staging.reports.coverage.behaviour.cucumber)
])
// .pipe(gulp.dest(dirs.staging.reports.coverage.all));

Expand Down

0 comments on commit 896f1d3

Please sign in to comment.