From 2a91b165c01fe072c7440070f1938c65bff9c191 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Apr 2026 10:33:13 +0000 Subject: [PATCH] Quarantine BlazorWebJsInitializersTest.InitializersRunsModernCallbacksByDefaultWhenPresent The test has been failing consistently (23+ times) in the components-e2e pipeline (definition 87) on the main branch over the past 30 days. Associated issue: #aw_blzinit1 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../E2ETest/ServerRenderingTests/BlazorWebJsInitializersTest.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Components/test/E2ETest/ServerRenderingTests/BlazorWebJsInitializersTest.cs b/src/Components/test/E2ETest/ServerRenderingTests/BlazorWebJsInitializersTest.cs index b6e0386d2739..bd80617e36c9 100644 --- a/src/Components/test/E2ETest/ServerRenderingTests/BlazorWebJsInitializersTest.cs +++ b/src/Components/test/E2ETest/ServerRenderingTests/BlazorWebJsInitializersTest.cs @@ -5,6 +5,7 @@ using Microsoft.AspNetCore.Components.E2ETest.Infrastructure; using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures; using Microsoft.AspNetCore.E2ETesting; +using Microsoft.AspNetCore.InternalTesting; using OpenQA.Selenium; using TestServer; using Xunit.Abstractions; @@ -28,6 +29,7 @@ public override Task InitializeAsync() [Theory] [MemberData(nameof(InitializerTestData))] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_blzinit1")] public void InitializersRunsModernCallbacksByDefaultWhenPresent(bool streaming, bool webassembly, bool server, string[] expectedInvokedCallbacks) { var url = $"{ServerPathBase}/initializers?streaming={streaming}&wasm={webassembly}&server={server}";