mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 01:02:00 -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();
|
|
}
|
|
}
|