From e65d34efb0a9459987f7ba8ba6d946db1a2af92f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 04:28:00 +0000 Subject: [PATCH 1/2] Initial plan From 6a4de91c84e8a3c85003a2a8bb3aa73f65c7bf5a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 04:33:19 +0000 Subject: [PATCH 2/2] Fix tests: update codemod count and order for playwright-allowed-domains-migration Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/cli/fix_codemods_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/cli/fix_codemods_test.go b/pkg/cli/fix_codemods_test.go index 391b6d55fd2..53311461993 100644 --- a/pkg/cli/fix_codemods_test.go +++ b/pkg/cli/fix_codemods_test.go @@ -43,7 +43,7 @@ func TestGetAllCodemods_ReturnsAllCodemods(t *testing.T) { codemods := GetAllCodemods() // Verify we have the expected number of codemods - expectedCount := 22 + expectedCount := 23 assert.Len(t, codemods, expectedCount, "Should return all %d codemods", expectedCount) // Verify all codemods have required fields @@ -126,6 +126,7 @@ func TestGetAllCodemods_InExpectedOrder(t *testing.T) { "bots-to-on-bots", "engine-steps-to-top-level", "assign-to-agent-default-agent-to-name", + "playwright-allowed-domains-migration", } require.Len(t, codemods, len(expectedOrder), "Should have expected number of codemods")