From 4443147a05f9087872562ddc7b7304e5551c4f87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 10:52:03 +0000 Subject: [PATCH] Re-quarantine BlazorWasmTemplateTest and WebWorkerTemplateE2ETest Both classes are failing again in build 1388488 after being unquarantined in #66303. The DevServer version pin fix may not have fully resolved the underlying issue. - Re-quarantine WebWorkerTemplateE2ETest at class level (issue #66292) - Re-quarantine BlazorWasmTemplateTest at class level (issue #66293) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs | 2 ++ .../test/Templates.Blazor.Tests/WebWorkerTemplateE2ETest.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs b/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWasmTemplateTest.cs index 64534df9249c..96bff3804e5c 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/66293")] 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..a7f9b6124f69 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/66292")] public class WebWorkerTemplateE2ETest(ProjectFactoryFixture projectFactory) : BlazorTemplateTest(projectFactory) { public override string ProjectType => "blazorwasm";