We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14d387f commit 8693b46Copy full SHA for 8693b46
packages/mongodb-memory-server-core/src/util/MongoInstance.ts
@@ -12,6 +12,11 @@ import {
12
} from '../types';
13
import debug from 'debug';
14
import { isNullOrUndefined } from './db_util';
15
+import { lt } from 'semver';
16
+
17
+if (lt(process.version, '10.15.0')) {
18
+ console.warn('Using NodeJS below 10.15.0');
19
+}
20
21
const log = debug('MongoMS:MongoInstance');
22
0 commit comments