Skip to content

Commit

Permalink
build: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kirrg001 authored and aryamohanan committed Apr 29, 2024
1 parent c25c1cf commit fa1c202
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
"couchbase": "^4.3.1",
"ibm_db": "^3.2.4",
"kafka-avro": "^3.1.1",
"node-rdkafka": "^3.0.0",
"node-rdkafka": "^3.0.1",
"pg-native": "^3.0.1",
"prisma": "^5.13.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const topic = 'rdkafka-topic';

let mochaSuiteFn;

if (!supportedVersion(process.versions.node) || semver.lte(process.versions.node, '14.0.0')) {
if (!supportedVersion(process.versions.node) || semver.lte(process.versions.node, '16.0.0')) {
mochaSuiteFn = describe.skip;
} else {
mochaSuiteFn = describe;
Expand Down

0 comments on commit fa1c202

Please sign in to comment.