Quarantine flaky Razor Integration tests (#25043)
This commit is contained in:
parent
9f398d9a56
commit
df04381411
|
|
@ -4,6 +4,7 @@
|
|||
using System.IO;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Testing;
|
||||
using Microsoft.NET.Sdk.BlazorWebAssembly;
|
||||
using Xunit;
|
||||
|
||||
|
|
@ -88,6 +89,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
|||
}
|
||||
|
||||
[Fact]
|
||||
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
|
||||
public async Task Publish_LazyLoadExplicitAssembly_Debug_Works()
|
||||
{
|
||||
// Arrange
|
||||
|
|
|
|||
|
|
@ -113,6 +113,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
|||
}
|
||||
|
||||
[Fact]
|
||||
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
|
||||
public async Task Publish_WithoutLinkerAndCompression_IsIncremental()
|
||||
{
|
||||
// Arrange
|
||||
|
|
|
|||
|
|
@ -144,6 +144,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
|||
}
|
||||
|
||||
[Fact]
|
||||
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
|
||||
public async Task Publish_InRelease_Works()
|
||||
{
|
||||
// Arrange
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Testing;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||
|
|
@ -18,6 +19,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
|||
public override string TargetFramework => "netcoreapp2.1";
|
||||
|
||||
[Fact]
|
||||
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25042")]
|
||||
public async Task Building_WorksWhenMultipleRazorConfigurationsArePresent()
|
||||
{
|
||||
using (var project = CreateTestProject())
|
||||
|
|
|
|||
Loading…
Reference in New Issue