Remove shouldIgnore check (#4907)

Otherwise tasks will never be marked as disabled
This commit is contained in:
Daniel Tschinder 2016-11-30 02:36:50 +01:00 committed by Henry Zhu
parent e86f62b304
commit f0cdf136bd

View File

@ -71,7 +71,6 @@ export default function get(entryLoc): Array<Suite> {
if (suiteOptsLoc) suite.options = require(suiteOptsLoc);
for (let taskName of fs.readdirSync(suite.filename)) {
if (shouldIgnore(taskName)) continue;
push(taskName, suite.filename + "/" + taskName);
}