chore(build): fix to ensure all unit tests are run independent of state of dist directory

This commit is contained in:
Dan Bucholtz
2017-03-14 14:29:05 -05:00
parent 396f891f33
commit 06246df3ce

View File

@@ -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) {