From 94722f3c06ec7e0cd8bdab4aa56d428a5356df7a Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Thu, 7 Apr 2022 10:32:23 +0200 Subject: [PATCH] fix(node-integration-tests): increase MongoMemoryServer creation timeout temporarily increase the timeout to stop flakiness until the proper fix is ready --- .../suites/tracing/auto-instrument/mongodb/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/node-integration-tests/suites/tracing/auto-instrument/mongodb/test.ts b/packages/node-integration-tests/suites/tracing/auto-instrument/mongodb/test.ts index d118a03261a5..dd5f88f860ca 100644 --- a/packages/node-integration-tests/suites/tracing/auto-instrument/mongodb/test.ts +++ b/packages/node-integration-tests/suites/tracing/auto-instrument/mongodb/test.ts @@ -8,7 +8,7 @@ conditionalTest({ min: 12 })('MongoDB Test', () => { beforeAll(async () => { mongoServer = await MongoMemoryServer.create(); process.env.MONGO_URL = mongoServer.getUri(); - }, 30000); + }, 40000); afterAll(async () => { await mongoServer.stop();