From 896f1d339769ded5bc390a47561c22c62d5261d8 Mon Sep 17 00:00:00 2001 From: jan-molak Date: Wed, 21 Dec 2016 02:51:12 +0000 Subject: [PATCH] test(coverage): disabling cookbook coverage aggregation 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. --- gulpfile.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 6c592ee1efb..5d8eb859fbb 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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));