Skip Flaky tests

This commit is contained in:
Ryan Brandenburg 2018-03-06 15:21:22 -08:00
parent 884a1b7dfc
commit 47d610b0cc
4 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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