@@ -94,7 +94,7 @@ describe('PullRequestGenerator', () => {
94
94
const body = await generator . generateBody ( singleNpmUpdate )
95
95
96
96
// Should include package summary table
97
- expect ( body ) . toContain ( '## 📦 Package Updates Summary' )
97
+ expect ( body ) . toContain ( '## Package Updates Summary' )
98
98
expect ( body ) . toContain ( '| Type | Count |' )
99
99
expect ( body ) . toContain ( '| 📦 NPM Packages | 1 |' )
100
100
expect ( body ) . toContain ( '| **Total** | **1** |' )
@@ -204,7 +204,7 @@ describe('PullRequestGenerator', () => {
204
204
const body = await generator . generateBody ( singleComposerUpdate )
205
205
206
206
// Should include package summary table
207
- expect ( body ) . toContain ( '## 📦 Package Updates Summary' )
207
+ expect ( body ) . toContain ( '## Package Updates Summary' )
208
208
expect ( body ) . toContain ( '| 🎼 Composer Packages | 1 |' )
209
209
210
210
// Should include detailed Composer dependencies section
@@ -236,7 +236,7 @@ describe('PullRequestGenerator', () => {
236
236
const body = await generator . generateBody ( singleSystemUpdate )
237
237
238
238
// Should include package summary table
239
- expect ( body ) . toContain ( '## 📦 Package Updates Summary' )
239
+ expect ( body ) . toContain ( '## Package Updates Summary' )
240
240
expect ( body ) . toContain ( '| 🔧 System Dependencies | 1 |' )
241
241
242
242
// Should include detailed system dependencies section
@@ -267,7 +267,7 @@ describe('PullRequestGenerator', () => {
267
267
const body = await generator . generateBody ( singleActionUpdate )
268
268
269
269
// Should include package summary table
270
- expect ( body ) . toContain ( '## 📦 Package Updates Summary' )
270
+ expect ( body ) . toContain ( '## Package Updates Summary' )
271
271
expect ( body ) . toContain ( '| 🚀 GitHub Actions | 1 |' )
272
272
273
273
// Should include detailed GitHub Actions section
@@ -312,7 +312,7 @@ describe('PullRequestGenerator', () => {
312
312
313
313
// Check that key sections exist in the right order
314
314
const introIndex = body . indexOf ( 'This PR contains the following updates:' )
315
- const summaryIndex = body . indexOf ( '## 📦 Package Updates Summary' )
315
+ const summaryIndex = body . indexOf ( '## Package Updates Summary' )
316
316
const npmIndex = body . indexOf ( '## 📦 npm Dependencies' )
317
317
const releaseNotesIndex = body . indexOf ( '### Release Notes' )
318
318
const configIndex = body . indexOf ( '### Configuration' )
0 commit comments