File tree Expand file tree Collapse file tree
tests/BitzArt.Blazor.Auth.Tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ public async Task<AuthenticationState> GetAuthenticationStateAsync(CancellationT
1717 return new AuthenticationState ( new ClaimsPrincipal ( new ClaimsIdentity ( [ claim ] ) ) ) ;
1818 }
1919
20+ public Task < AuthenticationOperationInfo > RefreshJwtPairAsync ( CancellationToken cancellationToken = default )
21+ => throw new NotImplementedException ( ) ;
22+
2023 public Task < AuthenticationOperationInfo > RefreshJwtPairAsync ( string refreshToken , CancellationToken cancellationToken = default )
2124 => throw new NotImplementedException ( ) ;
2225
@@ -28,7 +31,7 @@ public Task SignOutAsync(CancellationToken cancellationToken = default)
2831 public async Task GetAuthenticationStateAsync_Simaltaneous_ShouldReuseTheSameRequest ( )
2932 {
3033 // Arrange
31- var provider = new BlazorAuthAuthenticationStateProvider ( new TestUserService ( ) ) ;
34+ var provider = new BlazorAuthAuthenticationStateProvider ( new TestUserService ( ) , new ( ) ) ;
3235
3336 // Act
3437 var primaryTask = provider . GetAuthenticationStateAsync ( ) ;
You can’t perform that action at this time.
0 commit comments