Skip flaky tests

This commit is contained in:
Ryan Brandenburg 2018-03-13 14:57:07 -07:00
parent aa49e6990c
commit 1fd33f62f4
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ namespace Microsoft.AspNetCore.Identity.Service
Assert.Equal($"Missing '{IdentityServiceClaimTypes.ClientId}' claim from the application.", exception.Message);
}
[Fact]
[Fact(Skip = "https://github.com/aspnet/Identity/issues/1630")]
public async Task JwtIdTokenIssuer_SignsAccessToken()
{
// Arrange
@ -113,7 +113,7 @@ namespace Microsoft.AspNetCore.Identity.Service
Assert.Equal(expectedDateTime.UtcDateTime, jwtToken.ValidFrom);
}
[Theory(Skip="https://github.com/aspnet/Identity/issues/1630")]
[Theory(Skip = "https://github.com/aspnet/Identity/issues/1630")]
[InlineData(null, null, null)]
[InlineData("nonce", null, null)]
[InlineData("nonce", "code", null)]