Skip additional flaky tests. See aspnet/Mvc#7122

This commit is contained in:
Nate McMaster 2017-12-11 15:38:30 -08:00
parent 2789507808
commit 67f48064ce
1 changed files with 4 additions and 2 deletions

View File

@ -255,7 +255,8 @@ namespace Microsoft.AspNetCore.Mvc.FunctionalTests
#endif #endif
} }
[Fact] // See https://github.com/aspnet/Mvc/issues/7122
[Fact(Skip = "This test is flaky, and would require product changes to fix it. Issue #7122")]
public async Task CacheTagHelper_CanCachePortionsOfViewsPartialViewsAndViewComponents() public async Task CacheTagHelper_CanCachePortionsOfViewsPartialViewsAndViewComponents()
{ {
// Arrange // Arrange
@ -440,7 +441,8 @@ namespace Microsoft.AspNetCore.Mvc.FunctionalTests
Assert.Equal(expected2, response4.Trim()); Assert.Equal(expected2, response4.Trim());
} }
[Fact] // See https://github.com/aspnet/Mvc/issues/7122
[Fact(Skip = "This test is flaky, and would require product changes to fix it. Issue #7122")]
public async Task CacheTagHelper_BubblesExpirationOfNestedTagHelpers() public async Task CacheTagHelper_BubblesExpirationOfNestedTagHelpers()
{ {
// Arrange & Act - 1 // Arrange & Act - 1