From 804701c96aad63d2d97e74c94fae5167f2683878 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 18 Aug 2020 12:53:44 +0000 Subject: [PATCH] fix(core): update --- test/test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test.ts b/test/test.ts index 41b5e19..abd78b7 100644 --- a/test/test.ts +++ b/test/test.ts @@ -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(),