Skip to content

Commit

Permalink
wowowo
Browse files Browse the repository at this point in the history
  • Loading branch information
comcalvi committed Jul 2, 2024
1 parent b03209d commit 22bb7e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -494,11 +494,11 @@ integTest('deploy with notification ARN as prop', withDefaultFixture(async (fixt
const response = await fixture.aws.sns('createTopic', { Name: topicName });
const topicArn = response.TopicArn!;
try {
await fixture.cdkDeploy('test-notification-arn-prop');
await fixture.cdkDeploy('notification-arn-prop');

// verify that the stack we deployed has our notification ARN
const describeResponse = await fixture.aws.cloudFormation('describeStacks', {
StackName: fixture.fullStackName('test-notification-arn-prop'),
StackName: fixture.fullStackName('notification-arn-prop'),
});
expect(describeResponse.Stacks?.[0].NotificationARNs).toEqual([topicArn]);
} finally {
Expand Down

0 comments on commit 22bb7e8

Please sign in to comment.