mongodb-memory-server
Version:
In-memory MongoDB Server. Designed with testing in mind, the server will allow you to connect your favourite ODM or client library to the MongoDB Server and run integration tests isolated from each other.
8 lines (6 loc) • 317 B
TypeScript
import MongoBinary from './util/MongoBinary';
import MongoInstance from './util/MongoInstance';
import MongoMemoryServer from './MongoMemoryServer';
import MongoMemoryReplSet from './MongoMemoryReplSet';
export default MongoMemoryServer;
export { MongoBinary, MongoInstance, MongoMemoryServer, MongoMemoryReplSet };