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:
parent
cc38726ec8
commit
8864111f5b
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue