Skip to content

Commit

Permalink
chore: increase kafka-client test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilsol committed Oct 28, 2024
1 parent 53863ac commit 84175db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/kafka-client/test/kafka.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ describe('Kafka provider test', () => {
expect(countArr).not.toBe(undefined);
expect(countArr.length).to.equal(5);
});
}, 60000);
}, 120000);

describe('Manual Commit', () => {
it('should manually commit offset after processing message', async () => {
Expand Down Expand Up @@ -143,6 +143,6 @@ describe('Kafka provider test', () => {

// Verify that offset has been manually committed and updated accordingly
expect(finalOffset).be.above(initialOffset);
});
}, 120000);
});
});

0 comments on commit 84175db

Please sign in to comment.