@@ -110,7 +110,7 @@ describe('Function: processPartialResponse()', () => {
110110 } ;
111111
112112 // Act
113- const result = await handler ( event , context ) ;
113+ const result = await handler ( event , context . helloworldContext ) ;
114114
115115 // Assess
116116 expect ( result ) . toStrictEqual ( { batchItemFailures : [ ] } ) ;
@@ -137,7 +137,7 @@ describe('Function: processPartialResponse()', () => {
137137 } ;
138138
139139 // Act
140- const result = await handler ( event , context ) ;
140+ const result = await handler ( event , context . helloworldContext ) ;
141141
142142 // Assess
143143 expect ( result ) . toStrictEqual ( { batchItemFailures : [ ] } ) ;
@@ -164,7 +164,7 @@ describe('Function: processPartialResponse()', () => {
164164 } ;
165165
166166 // Act
167- const result = await handler ( event , context ) ;
167+ const result = await handler ( event , context . helloworldContext ) ;
168168
169169 // Assess
170170 expect ( result ) . toStrictEqual ( { batchItemFailures : [ ] } ) ;
@@ -223,7 +223,7 @@ describe('Function: processPartialResponse()', () => {
223223 } ;
224224
225225 // Act
226- const result = await handler ( event , context ) ;
226+ const result = await handler ( event , context . helloworldContext ) ;
227227
228228 // Assess
229229 expect ( result ) . toStrictEqual ( { batchItemFailures : [ ] } ) ;
0 commit comments