diff --git a/pkg/cli/fix_codemods_test.go b/pkg/cli/fix_codemods_test.go index 391b6d55fd..5331146199 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")