tscoverage/ts/npmts.tests.ts
2016-02-09 05:39:31 +01:00

39 lines
1.4 KiB
TypeScript

/// <reference path="./index.ts" />
module NpmtsTests {
export var run = function() {
var done = plugins.q.defer();
plugins.gulp.task('istanbul', function () {
return plugins.gulp.src([plugins.path.join(paths.cwd,"index.js")])
// Covering files
.pipe(plugins.g.istanbul())
// Force `require` to return covered files
.pipe(plugins.g.istanbul.hookRequire());
});
plugins.gulp.task('mocha', function () {
return plugins.gulp.src(['test/test.js'])
.pipe(plugins.g.mocha())
// 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 } }));
});
plugins.gulp.task("coveralls",function(){
return plugins.gulp.src('coverage/**/lcov.info')
.pipe(plugins.g.if(
process.env.TRAVIS,
plugins.g.coveralls()
));
});
plugins.gulp.task("test",function(){
plugins.g.sequence("istanbul","mocha","coveralls",function(){
done.resolve();
})
});
plugins.gulp.start.apply(plugins.gulp, ['test']);
return done.promise;
}
}