Disabling hanging FlushPoint test

This commit is contained in:
John Luo 2016-01-08 11:56:31 -08:00
parent bf1fcf6b56
commit c68f742dd0
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.AspNet.Testing.xunit;
using Xunit;
namespace Microsoft.AspNet.Mvc.FunctionalTests
@ -55,7 +56,7 @@ After flush inside partial<form action=""/FlushPoint/PageWithoutLayout"" method=
Assert.Equal(expected, body, ignoreLineEndingDifferences: true);
}
[Theory]
[ConditionalTheory(Skip = "Hangs arbitrarily on CI")]
[InlineData("PageWithPartialsAndViewComponents", "FlushAsync invoked inside RenderSection")]
[InlineData("PageWithRenderSectionAsync", "FlushAsync invoked inside RenderSectionAsync")]
public async Task FlushPointsAreExecutedForPagesWithComponentsPartialsAndSections(string action, string title)