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