From 670a0c63fb6ad5d1d4eefaa57f25ddadfe6815fb Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 2 Sep 2019 16:50:22 +0200 Subject: [PATCH] fix(core): update --- test/test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test.ts b/test/test.ts index bbf11db..d5f3085 100644 --- a/test/test.ts +++ b/test/test.ts @@ -26,9 +26,10 @@ tap.test('should create a testinstance as database', async () => { mongoDbUrl: await mongod.getConnectionString() }; console.log(smartdataOptions); + testDb = new smartdata.SmartdataDb(smartdataOptions); }); -tap.test('should create a smartdb', async () => { +tap.skip.test('should create a smartdb', async () => { testDb = new smartdata.SmartdataDb({ mongoDbName: testQenv.getEnvVarOnDemand('MONGO_DBNAME'), mongoDbUrl: testQenv.getEnvVarOnDemand('MONGO_URL'),