RESOLVES CORE-1153 **What** - This pr mainly lay the foundation the caching layer. It comes with a modules (built in memory cache) and a redis provider. - Apply caching to few touch point to test Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com>
9 lines
250 B
JavaScript
9 lines
250 B
JavaScript
const defineJestConfig = require("../../../define_jest_config")
|
|
module.exports = defineJestConfig({
|
|
moduleNameMapper: {
|
|
"^@services": "<rootDir>/src/services",
|
|
"^@types": "<rootDir>/src/types",
|
|
"^@utils": "<rootDir>/src/utils",
|
|
},
|
|
})
|