mirror of
https://github.com/Permissionless-Software-Foundation/ipfs-bch-wallet-service.git
synced 2026-09-21 16:52:03 -07:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
import mongoose from 'mongoose'
|
|
|
|
export function cleanDb () {
|
|
for (const collection in mongoose.connection.collections) {
|
|
mongoose.connection.collections[collection].remove();
|
|
}
|
|
}
|