Increase test timeouts (#23868)
This commit is contained in:
parent
8ed59a4e82
commit
69ec50bfd8
|
|
@ -125,7 +125,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
ProcessStartInfo processStartInfo,
|
ProcessStartInfo processStartInfo,
|
||||||
TimeSpan? timeout = null)
|
TimeSpan? timeout = null)
|
||||||
{
|
{
|
||||||
timeout = timeout ?? TimeSpan.FromSeconds(5 * 60);
|
timeout = timeout ?? TimeSpan.FromSeconds(8 * 60);
|
||||||
|
|
||||||
var process = new Process()
|
var process = new Process()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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; }
|
public string ScreenShotsPath { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue