From c64adde231a44706789540955393d04180ff3965 Mon Sep 17 00:00:00 2001 From: Muhammad Rehan Saeed Date: Mon, 23 Nov 2020 13:55:29 +0000 Subject: [PATCH] Set default timeout period --- Source/Boxed.DotnetNewTest/ProjectExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Boxed.DotnetNewTest/ProjectExtensions.cs b/Source/Boxed.DotnetNewTest/ProjectExtensions.cs index eff095b7..3d388bda 100644 --- a/Source/Boxed.DotnetNewTest/ProjectExtensions.cs +++ b/Source/Boxed.DotnetNewTest/ProjectExtensions.cs @@ -447,7 +447,7 @@ await WaitForStartAsync( readinessCheck, httpClient, httpsClient, - timeout ?? TimeSpan.FromMinutes(1)) + timeout ?? ConfigurationService.DefaultTimeout) .ConfigureAwait(false); } catch