add support for picking up all .ts files in .test/

This commit is contained in:
2017-03-31 16:46:48 +02:00
parent 9b595e75cd
commit ebc3cb70ff
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ let tap = function (configArg: INpmtsConfig) {
* handle the test files
*/
let testFilesSmartstream = new plugins.smartstream.Smartstream([
plugins.gulp.src([ plugins.path.join(paths.cwd, 'test/test.ts') ]),
plugins.gulp.src([ plugins.path.join(paths.cwd, 'test/*.ts') ]),
plugins.gulpTypeScript({
target: 'ES5',
emitDecoratorMetadata: true,