Increasing timeout to check Kestrel Server is up.

KestrelSample app compilation time on CI machines is 16-20s and the test timeouts even before the kestrel server is up, which I suspect is the reason why kestrel tests are flaky.
This commit is contained in:
Sridhar Periyasamy 2016-04-08 12:42:43 -07:00
parent 0747d31f86
commit 95accc5f94

View file

@ -11,7 +11,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
public class NetworkHelper
{
// in milliseconds
private const int Timeout = 20000;
private const int Timeout = 50000;
public static string Localhost { get; } = "http://localhost";