Drops all (non system) mongodb collections
npm install drop-mongodb-collectionsDrops all non system mongodb collections. To be used for tests.


``bash`
> npm i drop-mongodb-collections --save-dev
`js
const dropMongoDbCollections = require('drop-mongodb-collections')('mongodb://localhost/tests');
// Mocha
describe('something', function() {
// Cleanup db before running tests
beforeEach(dropMongoDbCollections);
// Your tests go here
});
``