Skip to content

Commit

Permalink
temporarily skip plugin-mongoose test for 8.10.0 (#5219)
Browse files Browse the repository at this point in the history
  • Loading branch information
iunanua authored Feb 6, 2025
1 parent f49e6ff commit 218c35a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/datadog-plugin-mongoose/test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ describe('Plugin', () => {
describe('mongoose', () => {
withVersions('mongoose', ['mongoose'], (version) => {
const specificVersion = require(`../../../versions/mongoose@${version}`).version()
if (NODE_MAJOR === 14 && semver.satisfies(specificVersion, '>=8')) return
if ((NODE_MAJOR === 14 && semver.satisfies(specificVersion, '>=8')) ||
semver.satisfies(specificVersion, '>=8.10.0')) return

let mongoose

Expand Down

0 comments on commit 218c35a

Please sign in to comment.