Skip to content

Commit

Permalink
Remove skip in consuming lots of messages test
Browse files Browse the repository at this point in the history
  • Loading branch information
magne committed Dec 6, 2023
1 parent 42a403c commit ddd9699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/declare_consumer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe("declare consumer", () => {
await eventually(() => expect(messages).eql([Buffer.from("hello"), Buffer.from("world"), Buffer.from("world")]))
}).timeout(10000)

it.skip(`consume a lot of messages`, async () => {
it(`consume a lot of messages`, async () => {
const receivedMessages: Buffer[] = []
await connection.declareConsumer({ stream: streamName, offset: Offset.next() }, (message: Message) => {
receivedMessages.push(message.content)
Expand Down

0 comments on commit ddd9699

Please sign in to comment.