Skip to content

Commit

Permalink
test: updated rdkafka test minimum node version to above 16
Browse files Browse the repository at this point in the history
  • Loading branch information
abhilash-sivan committed Oct 17, 2024
1 parent 34b990f commit 2e5df09
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ const topic = 'rdkafka-topic';

// TODO: investigate as part of https://jsw.ibm.com/browse/INSTA-17132
const mochaSuiteFn =
supportedVersion(process.versions.node) && semver.satisfies(process.versions.node, '<=22.x')
supportedVersion(process.versions.node) &&
semver.gt(process.versions.node, '16.0.0') &&
semver.satisfies(process.versions.node, '<=22.x')
? describe
: describe.skip;

Expand Down

0 comments on commit 2e5df09

Please sign in to comment.