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
refactor(ecs-patterns): organize hierarchy of describe in tests (#29153)
### Issue # (if applicable)
part of #29041, #29039
Closes #<issue number here>.
### Reason for this change
The testing hierarchy was disorganized.
### Description of changes
Organized test as below.
No logical change.
```ts
describe('Application Load Balancer', () => {
describe('ApplicationLoadBalancedFargateService', () => {
...
})
describe('ApplicationMultipleTargetGroupsFargateService', () => {
...
})
})
describe('Network Load Balancer', () => {
describe('NetworkLoadBalancedFargateService', () => {
...
})
describe('NetworkMultipleTargetGroupsFargateService', () => {
...
})
})
```
### Description of how you validated changes
pass unit tests
### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
0 commit comments