Compare commits

...

2 Commits

Author SHA1 Message Date
0984a1ade4 3.1.38 2020-08-18 12:53:45 +00:00
804701c96a fix(core): update 2020-08-18 12:53:44 +00:00
3 changed files with 5 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartdata",
"version": "3.1.37",
"version": "3.1.38",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartdata",
"version": "3.1.37",
"version": "3.1.38",
"private": false,
"description": "do more with data",
"main": "dist_ts/index.js",

View File

@ -21,7 +21,9 @@ let mongod: mongoPlugin.MongoMemoryServer;
tap.test('should create a testinstance as database', async () => {
mongod = new mongoPlugin.MongoMemoryServer();
console.log('created mongod instance');
await mongod._startUpInstance();
await mongod._startUpInstance().catch(err => {
console.log(err);
});
console.log('mongod started');
smartdataOptions = {
mongoDbName: await mongod.getDbName(),