Skip to content

Commit 19a3c7e

Browse files
author
gleb-centrica
committed
Fix: run prettify
1 parent 9d7d51d commit 19a3c7e

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

test/unit/lib/plugins/aws/custom-resources/index.test.js

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,8 @@ describe('test/unit/lib/plugins/aws/customResources/index.test.js', () => {
443443
},
444444
});
445445

446-
const properties = cfTemplate.Resources.CustomDashresourceDashapigwDashcwDashroleLambdaFunction.Properties;
446+
const properties =
447+
cfTemplate.Resources.CustomDashresourceDashapigwDashcwDashroleLambdaFunction.Properties;
447448
expect(properties.Runtime).to.equal('nodejs22.x');
448449
});
449450

@@ -459,7 +460,8 @@ describe('test/unit/lib/plugins/aws/customResources/index.test.js', () => {
459460
},
460461
});
461462

462-
const properties = cfTemplate.Resources.CustomDashresourceDashexistingDashcupLambdaFunction.Properties;
463+
const properties =
464+
cfTemplate.Resources.CustomDashresourceDashexistingDashcupLambdaFunction.Properties;
463465
expect(properties.Runtime).to.equal('nodejs22.x');
464466
});
465467

@@ -479,7 +481,8 @@ describe('test/unit/lib/plugins/aws/customResources/index.test.js', () => {
479481
},
480482
});
481483

482-
const properties = cfTemplate.Resources.CustomDashresourceDasheventDashbridgeLambdaFunction.Properties;
484+
const properties =
485+
cfTemplate.Resources.CustomDashresourceDasheventDashbridgeLambdaFunction.Properties;
483486
expect(properties.Runtime).to.equal('nodejs22.x');
484487
});
485488

@@ -495,11 +498,11 @@ describe('test/unit/lib/plugins/aws/customResources/index.test.js', () => {
495498
},
496499
});
497500

498-
const properties = cfTemplate.Resources.CustomDashresourceDashexistingDashs3LambdaFunction.Properties;
501+
const properties =
502+
cfTemplate.Resources.CustomDashresourceDashexistingDashs3LambdaFunction.Properties;
499503
expect(properties.Runtime).to.equal('nodejs22.x');
500504
});
501505

502-
503506
it('correctly takes stage from config into account when constructing apiGatewayCloudWatchRole resource', async () => {
504507
const { cfTemplate } = await runServerless({
505508
fixture: 'api-gateway',

0 commit comments

Comments
 (0)