From 06246df3ce25370fdf984f019442905d1f8d17ae Mon Sep 17 00:00:00 2001 From: Dan Bucholtz Date: Tue, 14 Mar 2017 14:29:05 -0500 Subject: [PATCH] chore(build): fix to ensure all unit tests are run independent of state of dist directory --- scripts/gulp/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gulp/util.ts b/scripts/gulp/util.ts index 0564137789..a55d37649f 100644 --- a/scripts/gulp/util.ts +++ b/scripts/gulp/util.ts @@ -85,7 +85,7 @@ export function copySourceToDest(destinationPath: string, excludeSpecs: boolean, glob.push(`${SRC_ROOT}/**/*.spec.ts`); } if (excludeE2e) { - glob.push(`!${SRC_ROOT}/components/*/test/**/*.ts`); + glob.push(`!${SRC_ROOT}/components/*/test/*/**/*.ts`); } let stream = src(glob); if (stripDebug) {