mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 17:04:49 +08:00
88a587c5c2
* Switch to ts-node-dev for development * Minimal setup for backend testing * Basic controller test * __tests__ directory * Delete old DB client * Improve tests, ensure DB cleanup only runs for inMemory DB
12 lines
192 B
JavaScript
12 lines
192 B
JavaScript
module.exports = {
|
|
mongodbMemoryServerOptions: {
|
|
binary: {
|
|
version: "4.0.3",
|
|
skipMD5: true,
|
|
},
|
|
instance: {
|
|
dbName: "jest",
|
|
},
|
|
autoStart: false,
|
|
},
|
|
};
|