Don't auto exclude test files

This commit is contained in:
Joe Haddad
2018-10-24 17:23:21 -04:00
parent b50590f7f4
commit 021f7e502f

View File

@@ -210,10 +210,6 @@ function verifyTypeScriptSetup() {
`${chalk.cyan('include')} should be ${chalk.cyan.bold('src')}`
);
}
if (parsedTsConfig.exclude == null) {
appTsConfig.exclude = ['**/__tests__/**', '**/?*test.*', '**/?*spec.*'];
messages.push(`${chalk.cyan('exclude')} should exclude test files`);
}
if (messages.length > 0) {
if (firstTimeSetup) {