Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -88,6 +89,7 @@ public async Task Build_LazyLoadExplicitAssembly_Release_Works()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
public async Task Publish_LazyLoadExplicitAssembly_Debug_Works()
{
// Arrange
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public async Task Publish_WithLinkerAndCompression_IsIncremental()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
public async Task Publish_WithoutLinkerAndCompression_IsIncremental()
{
// Arrange
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ public async Task Publish_WithScopedCss_Works()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")]
public async Task Publish_InRelease_Works()
{
// Arrange
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Testing;
using Xunit;

namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
Expand All @@ -18,6 +19,7 @@ public MvcBuildIntegrationTest21(LegacyBuildServerTestFixture buildServer)
public override string TargetFramework => "netcoreapp2.1";

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25042")]
public async Task Building_WorksWhenMultipleRazorConfigurationsArePresent()
{
using (var project = CreateTestProject())
Expand Down