From 8e1701f66a7488d1301470f26f0c8459d90e5e08 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 10:58:53 +0000 Subject: [PATCH 1/3] Quarantine BlazorWasmTemplateTest and WebWorkerTemplateE2ETest; unquarantine ShutdownTests.OutOfProcessToInProcessHostingModelSwitchWorks - Re-quarantine WebWorkerTemplateE2ETest at class level (was unquarantined in #66072, failing again in build 1373142) - Quarantine BlazorWasmTemplateTest at class level (NU1603 NuGet restore failures in builds 1342501 and 1373142) - Unquarantine ShutdownTests.OutOfProcessToInProcessHostingModelSwitchWorks (100% pass rate in quarantine pipeline for 30+ days) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs | 2 ++ .../test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs | 1 + src/Servers/IIS/IIS/test/Common.LongTests/ShutdownTests.cs | 1 - 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs b/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs index 64534df9249c..7e7d8909ba56 100644 --- a/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs +++ b/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs @@ -6,6 +6,7 @@ using System.Text.RegularExpressions; using Microsoft.AspNetCore.BrowserTesting; using Microsoft.AspNetCore.Internal; +using Microsoft.AspNetCore.InternalTesting; using Microsoft.Extensions.CommandLineUtils; using Microsoft.Playwright; using Templates.Test.Helpers; @@ -14,6 +15,7 @@ namespace BlazorTemplates.Tests; #pragma warning disable xUnit1041 // Fixture arguments to test classes must have fixture sources +[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_blazwasm")] public class BlazorWasmTemplateTest(ProjectFactoryFixture projectFactory) : BlazorTemplateTest(projectFactory) { public override string ProjectType { get; } = "blazorwasm"; diff --git a/src/ProjectTemplates/test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs b/src/ProjectTemplates/test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs index 59d74bd12b3c..483fde0ec930 100644 --- a/src/ProjectTemplates/test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs +++ b/src/ProjectTemplates/test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs @@ -15,6 +15,7 @@ namespace BlazorTemplates.Tests; #pragma warning disable xUnit1041 // Fixture arguments to test classes must have fixture sources +[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_webwkr")] public class WebWorkerTemplateE2ETest(ProjectFactoryFixture projectFactory) : BlazorTemplateTest(projectFactory) { public override string ProjectType => "blazorwasm"; diff --git a/src/Servers/IIS/IIS/test/Common.LongTests/ShutdownTests.cs b/src/Servers/IIS/IIS/test/Common.LongTests/ShutdownTests.cs index ea80e1fe7744..5743ca4f6deb 100644 --- a/src/Servers/IIS/IIS/test/Common.LongTests/ShutdownTests.cs +++ b/src/Servers/IIS/IIS/test/Common.LongTests/ShutdownTests.cs @@ -556,7 +556,6 @@ public async Task ConfigurationChangeCanBeIgnoredOutOfProcess() await deploymentResult.HttpClient.RetryRequestAsync("/ProcessId", async r => await r.Content.ReadAsStringAsync() == processBefore); } - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/55937")] [ConditionalFact] public async Task OutOfProcessToInProcessHostingModelSwitchWorks() { From 322a5acb703b42e494346216a585d3b79dee24ec Mon Sep 17 00:00:00 2001 From: William Godbe Date: Mon, 13 Apr 2026 08:04:52 -0700 Subject: [PATCH 2/3] Update WebWorkerTemplateE2ETest.cs --- .../test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProjectTemplates/test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs b/src/ProjectTemplates/test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs index 483fde0ec930..d88eb6a73449 100644 --- a/src/ProjectTemplates/test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs +++ b/src/ProjectTemplates/test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs @@ -15,7 +15,7 @@ namespace BlazorTemplates.Tests; #pragma warning disable xUnit1041 // Fixture arguments to test classes must have fixture sources -[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_webwkr")] +[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#66292")] public class WebWorkerTemplateE2ETest(ProjectFactoryFixture projectFactory) : BlazorTemplateTest(projectFactory) { public override string ProjectType => "blazorwasm"; From 7c17b596530b48e01a14d65f2718fc21bcb5ccbd Mon Sep 17 00:00:00 2001 From: William Godbe Date: Mon, 13 Apr 2026 08:05:19 -0700 Subject: [PATCH 3/3] Update BlazorWasmTemplateTest.cs --- .../test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs b/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs index 7e7d8909ba56..59a4eb2911d7 100644 --- a/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs +++ b/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs @@ -15,7 +15,7 @@ namespace BlazorTemplates.Tests; #pragma warning disable xUnit1041 // Fixture arguments to test classes must have fixture sources -[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_blazwasm")] +[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#66293")] public class BlazorWasmTemplateTest(ProjectFactoryFixture projectFactory) : BlazorTemplateTest(projectFactory) { public override string ProjectType { get; } = "blazorwasm";