Mark mvc test as flaky (#9489)

This commit is contained in:
Justin Kotalik 2019-04-17 21:46:27 -07:00 committed by BrennanConroy
parent a8b67a2b98
commit 7448964388
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,8 @@
using System.Net.Http; using System.Net.Http;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNetCore.Testing;
using Microsoft.AspNetCore.Testing.xunit;
using Xunit; using Xunit;
namespace Microsoft.AspNetCore.Mvc.FunctionalTests namespace Microsoft.AspNetCore.Mvc.FunctionalTests
@ -36,6 +38,7 @@ RenderBody content
} }
[Fact] [Fact]
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/2300", FlakyOn.All)]
public async Task FlushFollowedByLargeContent() public async Task FlushFollowedByLargeContent()
{ {
// Arrange // Arrange
@ -50,6 +53,7 @@ RenderBody content
} }
[Fact] [Fact]
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/2300", FlakyOn.All)]
public async Task FlushInvokedInComponent() public async Task FlushInvokedInComponent()
{ {
var expected = new string('a', 1024 * 1024); var expected = new string('a', 1024 * 1024);