Skip to content

Commit

Permalink
test: enabled test for bull in node v23 and greater
Browse files Browse the repository at this point in the history
refs INSTA-17032
  • Loading branch information
abhilash-sivan committed Nov 4, 2024
1 parent 802097a commit 051fbc8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/collector/test/tracing/messaging/bull/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,8 @@ if (process.env.BULL_QUEUE_NAME) {
queueName = `${process.env.BULL_QUEUE_NAME}${semver.major(process.versions.node)}`;
}

// TODO: bull is broken in v23. Investigate currency as part of https://jsw.ibm.com/browse/INSTA-17032
const mochaSuiteFn =
supportedVersion(process.versions.node) && semver.satisfies(process.versions.node, '<=22.x')
? describe
: describe.skip;
supportedVersion(process.versions.node) ? describe : describe.skip;

const retryTime = 1000;

Expand Down

0 comments on commit 051fbc8

Please sign in to comment.