Skip to content

Commit

Permalink
Added output in test kafkaApi e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
armaseg committed Sep 10, 2024
1 parent d4c59eb commit e179cdd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion framework/test/e2e/kafka-api.e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,15 @@ beforeAll(async() => {
deployResult = await testStack.deploy();
}, 10000000);

it('Containers runtime created successfully', async () => {
test('MSK cluster created successfully', async () => {
// THEN
expect(deployResult.clusterArn).toContain('arn');
});

test('KafkaApi created successfully', async () => {
expect(deployResult.serviceToken).toContain('arn');
});

afterAll(async () => {
await testStack.destroy();
}, 10000000);

0 comments on commit e179cdd

Please sign in to comment.