Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Linq.Expressions;
using System.Security.Claims;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.InternalTesting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Xunit;
Expand Down Expand Up @@ -610,6 +611,7 @@ private List<TRole> GenerateRoles(string namePrefix, int count)
/// Test.
/// </summary>
/// <returns>Task</returns>
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/64055")]
[Fact]
public async Task CanAddAndRetrievePasskey()
{
Expand Down Expand Up @@ -649,6 +651,7 @@ public async Task CanAddAndRetrievePasskey()
/// Test.
/// </summary>
/// <returns>Task</returns>
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/64055")]
[Fact]
public async Task CanRemovePasskey()
{
Expand Down Expand Up @@ -687,6 +690,7 @@ public async Task CanRemovePasskey()
/// Test.
/// </summary>
/// <returns>Task</returns>
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/64055")]
[Fact]
public async Task CanAddMultiplePasskeys()
{
Expand Down Expand Up @@ -743,6 +747,7 @@ public async Task CanAddMultiplePasskeys()
/// Test.
/// </summary>
/// <returns>Task</returns>
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/64055")]
[Fact]
public async Task UpdatingPasskeyChangesOnlyMutableFields()
{
Expand Down
Loading