Increase default WaitAssert timeout to 2 seconds

This commit is contained in:
Steve Sanderson 2018-08-23 11:58:46 +01:00
parent 3370113a05
commit 520d47316f
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ namespace Microsoft.AspNetCore.Blazor.E2ETest.Infrastructure
public class WaitAssert
{
private readonly static TimeSpan DefaultTimeout = TimeSpan.FromSeconds(1);
private readonly static TimeSpan DefaultTimeout = TimeSpan.FromSeconds(2);
public static void Equal<T>(T expected, Func<T> actual)
=> WaitAssertCore(() => Assert.Equal(expected, actual()));