Skip to content

Commit 2ea10cd

Browse files
committed
fix(test): Increase MongoMemoryServer creation timeout (#4881)
Increases the creation timeout of `MongoMemoryServer` to temporarily fix Node integration test flakiness
1 parent 68f8369 commit 2ea10cd

File tree

1 file changed

+1
-1
lines changed
  • packages/node-integration-tests/suites/tracing/auto-instrument/mongodb

1 file changed

+1
-1
lines changed

packages/node-integration-tests/suites/tracing/auto-instrument/mongodb/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ conditionalTest({ min: 12 })('MongoDB Test', () => {
88
beforeAll(async () => {
99
mongoServer = await MongoMemoryServer.create();
1010
process.env.MONGO_URL = mongoServer.getUri();
11-
}, 30000);
11+
}, 40000);
1212

1313
afterAll(async () => {
1414
await mongoServer.stop();

0 commit comments

Comments
 (0)