diff --git a/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildLazyLoadTest.cs b/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildLazyLoadTest.cs index e3925465bb11..88a7fb842d9a 100644 --- a/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildLazyLoadTest.cs +++ b/src/Components/WebAssembly/Sdk/integrationtests/WasmBuildLazyLoadTest.cs @@ -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 @@ public async Task Build_LazyLoadExplicitAssembly_Release_Works() } [Fact] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23756")] public async Task Publish_LazyLoadExplicitAssembly_Debug_Works() { // Arrange diff --git a/src/Components/WebAssembly/Sdk/integrationtests/WasmCompressionTests.cs b/src/Components/WebAssembly/Sdk/integrationtests/WasmCompressionTests.cs index 410db705e7fb..d7dc25528e0e 100644 --- a/src/Components/WebAssembly/Sdk/integrationtests/WasmCompressionTests.cs +++ b/src/Components/WebAssembly/Sdk/integrationtests/WasmCompressionTests.cs @@ -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 diff --git a/src/Components/WebAssembly/Sdk/integrationtests/WasmPublishIntegrationTest.cs b/src/Components/WebAssembly/Sdk/integrationtests/WasmPublishIntegrationTest.cs index e29a31909270..f822ab49c292 100644 --- a/src/Components/WebAssembly/Sdk/integrationtests/WasmPublishIntegrationTest.cs +++ b/src/Components/WebAssembly/Sdk/integrationtests/WasmPublishIntegrationTest.cs @@ -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 diff --git a/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MvcBuildIntegrationTest21.cs b/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MvcBuildIntegrationTest21.cs index eda5aeb309f9..81299bf88798 100644 --- a/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MvcBuildIntegrationTest21.cs +++ b/src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MvcBuildIntegrationTest21.cs @@ -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 @@ 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())