refine coverage treshold for failure

This commit is contained in:
Philipp Kunz 2016-02-09 06:01:32 +01:00
parent ebe7a02ef0
commit 2090dad540
5 changed files with 5 additions and 5 deletions

View File

@ -205,7 +205,7 @@ var NpmtsTests;
return plugins.gulp.src(['test/test.js'])
.pipe(plugins.g.mocha())
.pipe(plugins.g.istanbul.writeReports())
.pipe(plugins.g.istanbul.enforceThresholds({ thresholds: { global: 90 } }));
.pipe(plugins.g.istanbul.enforceThresholds({ thresholds: { global: 30 } }));
});
plugins.gulp.task("coveralls", function () {
return plugins.gulp.src('coverage/**/lcov.info')

View File

@ -77,7 +77,7 @@
</div><!-- /wrapper -->
<div class='footer quiet pad2 space-top1 center small'>
Code coverage
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Tue Feb 09 2016 05:46:38 GMT+0100 (CET)
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Tue Feb 09 2016 06:01:01 GMT+0100 (CET)
</div>
</div>
<script src="../prettify.js"></script>

View File

@ -76,7 +76,7 @@ module.exports = testplugin;
</div><!-- /wrapper -->
<div class='footer quiet pad2 space-top1 center small'>
Code coverage
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Tue Feb 09 2016 05:46:38 GMT+0100 (CET)
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Tue Feb 09 2016 06:01:01 GMT+0100 (CET)
</div>
</div>
<script src="../prettify.js"></script>

View File

@ -77,7 +77,7 @@
</div><!-- /wrapper -->
<div class='footer quiet pad2 space-top1 center small'>
Code coverage
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Tue Feb 09 2016 05:46:38 GMT+0100 (CET)
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Tue Feb 09 2016 06:01:01 GMT+0100 (CET)
</div>
</div>
<script src="prettify.js"></script>

View File

@ -17,7 +17,7 @@ module NpmtsTests {
// Creating the reports after tests ran
.pipe(plugins.g.istanbul.writeReports())
// Enforce a coverage of at least 90%
.pipe(plugins.g.istanbul.enforceThresholds({ thresholds: { global: 90 } }));
.pipe(plugins.g.istanbul.enforceThresholds({ thresholds: { global: 30 } }));
});
plugins.gulp.task("coveralls",function(){