Skip Flaky tests
This commit is contained in:
parent
884a1b7dfc
commit
47d610b0cc
|
|
@ -25,7 +25,7 @@ namespace Microsoft.AspNetCore.Identity.Service
|
|||
{
|
||||
public class AuthorizationCodeExchangeIntegrationTest
|
||||
{
|
||||
[Fact]
|
||||
[Fact(Skip = "https://github.com/aspnet/Identity/issues/1630")]
|
||||
public async Task ValidAuthorizationCode_ProducesAccessTokenIdTokenAndRefreshToken()
|
||||
{
|
||||
// Arrange
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ namespace Microsoft.AspNetCore.Identity.Service
|
|||
{
|
||||
public class DefaultSigningCredentialsSourceTest
|
||||
{
|
||||
[Fact]
|
||||
[Fact(Skip="https://github.com/aspnet/Identity/issues/1630")]
|
||||
public async Task GetCredentialsAsync_ReadsCredentialsFromOptions()
|
||||
{
|
||||
// Arrange
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ namespace Microsoft.AspNetCore.Identity.Service
|
|||
Assert.Equal($"Missing '{ClaimTypes.NameIdentifier}' claim from the user.", exception.Message);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
[Fact(Skip = "https://github.com/aspnet/Identity/issues/1630")]
|
||||
public async Task JwtAccessTokenIssuer_SignsAccessToken()
|
||||
{
|
||||
// Arrange
|
||||
|
|
@ -101,7 +101,7 @@ namespace Microsoft.AspNetCore.Identity.Service
|
|||
Assert.Equal(new[] { "all" }, tokenScopes);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
[Fact(Skip = "https://github.com/aspnet/Identity/issues/1630")]
|
||||
public async Task JwtAccessTokenIssuer_IncludesAllRequiredData()
|
||||
{
|
||||
// Arrange
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ namespace Microsoft.AspNetCore.Identity.Service
|
|||
Assert.Equal(expectedDateTime.UtcDateTime, jwtToken.ValidFrom);
|
||||
}
|
||||
|
||||
[Theory]
|
||||
[Theory(Skip="https://github.com/aspnet/Identity/issues/1630")]
|
||||
[InlineData(null, null, null)]
|
||||
[InlineData("nonce", null, null)]
|
||||
[InlineData("nonce", "code", null)]
|
||||
|
|
@ -209,7 +209,7 @@ namespace Microsoft.AspNetCore.Identity.Service
|
|||
new Claim(IdentityServiceClaimTypes.RedirectUri,"redirectUri"),
|
||||
};
|
||||
|
||||
[Fact]
|
||||
[Fact(Skip = "https://github.com/aspnet/Identity/issues/1630")]
|
||||
public async Task JwtIdTokenIssuer_IncludesAllRequiredData()
|
||||
{
|
||||
// Arrange
|
||||
|
|
|
|||
Loading…
Reference in New Issue