Created
February 24, 2021 13:40
-
-
Save axelhodler/329b46711c68fa944e12285263901d64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test('ELB health check path is using Spring Boot endpoint', () => { | |
const app = new cdk.App(); | |
const stack = new Cdktests.CdktestsStack(app, 'MyTestStack'); | |
expectCDK(stack).to(haveResource("AWS::ElasticLoadBalancingV2::TargetGroup",{ | |
HealthCheckPath: '/actuator/health' | |
})); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment