From ce4366cd43f7952b7cb6d838b21d5b0aa9cf0fb6 Mon Sep 17 00:00:00 2001 From: scottbommarito Date: Wed, 15 Jun 2016 14:21:24 -0700 Subject: [PATCH] tsFiles --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 855ca2778..7626eeea7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -111,7 +111,7 @@ gulp.task("compile-test", function () { var ts = require("gulp-typescript"); var insert = require("gulp-insert"); - return gulp.src([testPath + "/test.ts"]) + return gulp.src([testPath + tsFiles]) .pipe(ts(tsCompileOptions)) .pipe(insert.prepend(compiledSourceWarningMessage)) .pipe(gulp.dest(path.join(binPath, testPath)));