From 3431e94dddef9ef20bfc6a43473d1677ff07ccfc Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 12 Nov 2021 19:03:06 +0100 Subject: [PATCH] fix(core): update --- test/test.easystore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.easystore.ts b/test/test.easystore.ts index 600ea0b..6f436e3 100644 --- a/test/test.easystore.ts +++ b/test/test.easystore.ts @@ -19,7 +19,7 @@ let testDb: smartdata.SmartdataDb; let smartdataOptions: smartdata.IMongoDescriptor; let mongod: mongoPlugin.MongoMemoryServer; -tap.skip.test('should create a testinstance as database', async () => { +tap.test('should create a testinstance as database', async () => { mongod = await mongoPlugin.MongoMemoryServer.create(); console.log('created mongod instance'); console.log('mongod started'); @@ -31,7 +31,7 @@ tap.skip.test('should create a testinstance as database', async () => { await testDb.init(); }); -tap.test('should connect to atlas', async (tools) => { +tap.skip.test('should connect to atlas', async (tools) => { const databaseName = `test-smartdata-${smartunique.shortId()}`; testDb = new smartdata.SmartdataDb({ mongoDbUrl: testQenv.getEnvVarOnDemand('MONGO_URL'),