Remove unneeded wait.

This commit is contained in:
NissimHadar 2019-03-14 11:36:40 -07:00
parent b35b7687b7
commit 6c9c58c657

View file

@ -851,10 +851,7 @@ void TestCreator::createRecursiveScript(const QString& directory, bool interacti
textStream << " nitpick = createNitpick(Script.resolvePath(\".\"));" << endl;
textStream << " testsRootPath = nitpick.getTestsRootPath();" << endl << endl;
textStream << " nitpick.enableRecursive();" << endl;
textStream << " nitpick.enableAuto();" << endl << endl;
textStream << " if (typeof Test !== 'undefined') {" << endl;
textStream << " Test.wait(10000);" << endl;
textStream << " }" << endl;
textStream << " nitpick.enableAuto();" << endl;
textStream << "} else {" << endl;
textStream << " depth++" << endl;
textStream << "}" << endl << endl;