From 023b261d00df45b367fd56c2bfebd86b2f417a7b Mon Sep 17 00:00:00 2001 From: adam Date: Thu, 21 Apr 2016 17:42:35 +0200 Subject: [PATCH] fix(ts): fix typo of gulp's typescript test configuration file Fix a bug in gulp + typescript builds causing the test files to not be found by karma. Relates to issue #1748 --- app/templates/gulpfile.babel(gulp).js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/gulpfile.babel(gulp).js b/app/templates/gulpfile.babel(gulp).js index a28d4d0b6..ad8259cf7 100644 --- a/app/templates/gulpfile.babel(gulp).js +++ b/app/templates/gulpfile.babel(gulp).js @@ -315,7 +315,7 @@ gulp.task('transpile:client', ['constant', 'copy:constant'], () => { }); gulp.task('transpile:client:test', ['tsd:test'], () => { - let tsTestProject = plugins.typescript.createProject('./tsconfig.client.json'); + let tsTestProject = plugins.typescript.createProject('./tsconfig.client.test.json'); return tsTestProject.src() .pipe(plugins.sourcemaps.init()) .pipe(plugins.typescript(tsTestProject)).js