Increase test timeouts (#23868)

This commit is contained in:
Pranav K 2020-07-13 14:58:54 -07:00 committed by GitHub
parent 8ed59a4e82
commit 69ec50bfd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
ProcessStartInfo processStartInfo,
TimeSpan? timeout = null)
{
timeout = timeout ?? TimeSpan.FromSeconds(5 * 60);
timeout = timeout ?? TimeSpan.FromSeconds(8 * 60);
var process = new Process()
{

View File

@ -51,7 +51,7 @@ namespace Microsoft.AspNetCore.E2ETesting
}
}
public int DefaultWaitTimeoutInSeconds { get; set; } = 3;
public int DefaultWaitTimeoutInSeconds { get; set; } = 15;
public string ScreenShotsPath { get; set; }