monkeytype/backend/jest-mongodb-config.js
Christian Fehmer b3ae78f413
perf: improve leaderboard aggregation (fehmer) (#4841)
* perf: improve leaderboard aggregation

Update the leaderboard and public speedStats directly in mongodb without importing the data in the nodejs process first

* Replace type on public collection with magic ids
2023-12-06 16:03:44 +00:00

13 lines
193 B
JavaScript

module.exports = {
mongodbMemoryServerOptions: {
binary: {
version: "6.0.12",
skipMD5: true,
},
instance: {
dbName: "jest",
},
autoStart: false,
},
};