Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(test): Increase MongoMemoryServer creation timeout (#4881)
Increases the creation timeout of `MongoMemoryServer` to temporarily fix Node integration test flakiness
  • Loading branch information
Lms24 authored Apr 7, 2022
commit 285ca26a45894f90c51f5a5ec8c50666a089d8a7
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down