From 38e438c54f155cff6ecf439f7ea01c853da39a8f Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 12 Nov 2021 19:16:11 +0100 Subject: [PATCH] fix(core): update --- test/test.ts | 4 ++-- test/test.typescript.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test.ts b/test/test.ts index baaab02..88e0fe4 100644 --- a/test/test.ts +++ b/test/test.ts @@ -21,7 +21,7 @@ let mongod: mongoPlugin.MongoMemoryServer; const totalCars = 2000; -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'); @@ -33,7 +33,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'), diff --git a/test/test.typescript.ts b/test/test.typescript.ts index 3a3fab1..967d1cf 100644 --- a/test/test.typescript.ts +++ b/test/test.typescript.ts @@ -21,7 +21,7 @@ let mongod: mongoPlugin.MongoMemoryServer; const totalCars = 2000; -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'); @@ -33,7 +33,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'),