You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it('should use lambda output when isUseLambdaOutput is true and not use local output and AwsConfig.pdfGeneratorLambdaFunctionName is defined',async()=>{
156
183
// Arrange
157
184
constmockLambdaBuffer=Buffer.from('lambda pdf content')
158
185
constmockLocalBuffer=Buffer.from('local pdf content')
it('should use local output when isUseLambdaOutput is false and not use lambda output',async()=>{
228
+
it('should use local output when isUseLambdaOutput is false and not use lambda output and AwsConfig.pdfGeneratorLambdaFunctionName is defined',async()=>{
197
229
// Arrange
198
230
constmockLambdaBuffer=Buffer.from('lambda pdf content')
199
231
constmockLocalBuffer=Buffer.from('local pdf content')
it('should generate PDFs using both methods in parallel regardless of isUseLambdaOutput setting',async()=>{
268
+
it('should generate PDFs using both methods in parallel regardless of isUseLambdaOutput setting if AwsConfig.pdfGeneratorLambdaFunctionName is defined',async()=>{
232
269
// Arrange
233
270
constmockLambdaBuffer=Buffer.from('lambda pdf content')
234
271
constmockLocalBuffer=Buffer.from('local pdf content')
0 commit comments