Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/cli/fix_codemods_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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")
Expand Down