Skip to content

Commit 69ec50b

Browse files
authored
Increase test timeouts (#23868)
1 parent 8ed59a4 commit 69ec50b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MSBuildProcessManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ internal static Task<ProcessResult> RunProcessCoreAsync(
125125
ProcessStartInfo processStartInfo,
126126
TimeSpan? timeout = null)
127127
{
128-
timeout = timeout ?? TimeSpan.FromSeconds(5 * 60);
128+
timeout = timeout ?? TimeSpan.FromSeconds(8 * 60);
129129

130130
var process = new Process()
131131
{

src/Shared/E2ETesting/E2ETestOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ static E2ETestOptions()
5151
}
5252
}
5353

54-
public int DefaultWaitTimeoutInSeconds { get; set; } = 3;
54+
public int DefaultWaitTimeoutInSeconds { get; set; } = 15;
5555

5656
public string ScreenShotsPath { get; set; }
5757

0 commit comments

Comments
 (0)