Skip to content

Commit 218c35a

Browse files
authored
temporarily skip plugin-mongoose test for 8.10.0 (#5219)
1 parent f49e6ff commit 218c35a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/datadog-plugin-mongoose/test/index.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ describe('Plugin', () => {
1212
describe('mongoose', () => {
1313
withVersions('mongoose', ['mongoose'], (version) => {
1414
const specificVersion = require(`../../../versions/mongoose@${version}`).version()
15-
if (NODE_MAJOR === 14 && semver.satisfies(specificVersion, '>=8')) return
15+
if ((NODE_MAJOR === 14 && semver.satisfies(specificVersion, '>=8')) ||
16+
semver.satisfies(specificVersion, '>=8.10.0')) return
1617

1718
let mongoose
1819

0 commit comments

Comments
 (0)