Files
lsp/node_modules/mquery/test/collection/node.js
Arnaud Nelissen 3af7ddab06 Initial commit
2021-11-17 11:25:08 +01:00

29 lines
584 B
JavaScript

var assert = require('assert');
var mongo = require('mongodb');
var uri = process.env.MQUERY_URI || 'mongodb://localhost/mquery';
var client;
var db;
exports.getCollection = function(cb) {
mongo.MongoClient.connect(uri, function(err, _client) {
assert.ifError(err);
client = _client;
db = client.db();
var collection = db.collection('stuff');
// clean test db before starting
db.dropDatabase(function() {
cb(null, collection);
});
});
};
exports.dropCollection = function(cb) {
db.dropDatabase(function() {
client.close(cb);
});
};