Files
ipfs-bch-wallet-service/test/utils.js
T

8 lines
188 B
JavaScript

import mongoose from 'mongoose'
export function cleanDb () {
for (const collection in mongoose.connection.collections) {
mongoose.connection.collections[collection].remove();
}
}