From 398eed036b6b5c9cac3ba467859cf45052022943 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Tue, 12 Jan 2016 14:36:06 -0600 Subject: [PATCH] chore(gulp): don't typecheck karma tests --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 1b9a783f08..12044fae7f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -135,7 +135,8 @@ function tsCompile(options, cacheName){ '!ionic/components/*/test/**/*', '!ionic/util/test/*', '!ionic/config/test/*', - '!ionic/platform/test/*' + '!ionic/platform/test/*', + '!ionic/**/*.spec.ts' ]) .pipe(cache(cacheName, { optimizeMemory: true })) .pipe(tsc(options, undefined, tscReporter))