Increasing wait time out on mono tests

Right now since console logger is enabled there seems more delay in app start.
This commit is contained in:
Praburaj 2015-01-13 16:28:54 -08:00
parent cc38726ec8
commit 8864111f5b
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ namespace E2ETests
var hostProcess = Process.Start(startInfo);
logger.WriteInformation("Started {0}. Process Id : {1}", hostProcess.MainModule.FileName, hostProcess.Id);
Thread.Sleep(5 * 1000);
Thread.Sleep(15 * 1000);
//Clear the appbase so that it does not create issues with successive runs
Environment.SetEnvironmentVariable("KRE_APPBASE", string.Empty);