Mark mvc test as flaky (#9489)
This commit is contained in:
parent
a8b67a2b98
commit
7448964388
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue