mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 04:11:26 +08:00
16 lines
251 B
JavaScript
16 lines
251 B
JavaScript
const mongoose = require('./helpers/mongoose');
|
|
|
|
before(function(done) {
|
|
this.timeout(30000);
|
|
|
|
mongoose.waitTillConnect(done);
|
|
});
|
|
|
|
beforeEach(function(done) {
|
|
mongoose.clearDB(done);
|
|
});
|
|
|
|
after(function(done) {
|
|
mongoose.disconnect(done);
|
|
});
|