From 69ec50bfd8fc082270fcbf005630591a0028d989 Mon Sep 17 00:00:00 2001 From: Pranav K <prkrishn@hotmail.com> Date: Mon, 13 Jul 2020 14:58:54 -0700 Subject: [PATCH] Increase test timeouts (#23868) --- .../integrationtests/MSBuildProcessManager.cs | 2 +- src/Shared/E2ETesting/E2ETestOptions.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MSBuildProcessManager.cs b/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MSBuildProcessManager.cs index 5ab553d6bb8..cc79523d5bf 100644 --- a/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MSBuildProcessManager.cs +++ b/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MSBuildProcessManager.cs @@ -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() { diff --git a/src/Shared/E2ETesting/E2ETestOptions.cs b/src/Shared/E2ETesting/E2ETestOptions.cs index 4be16ef7799..328623c122d 100644 --- a/src/Shared/E2ETesting/E2ETestOptions.cs +++ b/src/Shared/E2ETesting/E2ETestOptions.cs @@ -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; } -- GitLab