UNPKG

193 BJavaScriptView Raw
1const debug = require('debug')('jest-mongodb:teardown');
2
3module.exports = async function () {
4 debug('Teardown mongod');
5 if (global.__MONGOD__) {
6 await global.__MONGOD__.stop();
7 }
8};