https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 2982b61a395fa953e624bd2db126bc4e08cd29e7 authored by Anthony Rimet on 04 December 2023, 14:49:44 UTC
14.0.30
Tip revision: 2982b61
jest-mongodb-config.js
module.exports = {
    mongodbMemoryServerOptions: {
        instance: {
            dbName: 'jest',
        },
        binary: {
            version: '4.4.24',
            skipMD5: true,
        },
        autoStart: false,
    },
};
back to top