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:
parent
0747d31f86
commit
95accc5f94
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue