https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 4c2315269fce4d5ef4eb743c22a8ae2f9948ea12 authored by Nicolas Thouvenin on 26 February 2024, 09:55:36 UTC
14.0.43
Tip revision: 4c23152
jest-mongodb-config.js
module.exports = {
    mongodbMemoryServerOptions: {
        instance: {
            dbName: 'jest',
        },
        binary: {
            version: '4.4.24',
            skipMD5: true,
        },
        autoStart: false,
    },
};
back to top