Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mr-pascal/d10b8d4367d2475635a3666ef8e8cbde to your computer and use it in GitHub Desktop.
Save mr-pascal/d10b8d4367d2475635a3666ef8e8cbde to your computer and use it in GitHub Desktop.
// jest-mongodb-config.js
/**
* Don't change the name of this file.
* The name is hardcoded inside the '@shelf/jest-mongodb' npm module!
*/
module.exports = {
/**
* Define some defaults to use for the in-memory MongoDB
*/
mongodbMemoryServerOptions: {
instance: {
dbName: 'jest',
},
binary: {
// Version of MongoDB
version: '4.0.2',
skipMD5: true,
},
autoStart: false,
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment