Files
medusa-store/packages/modules/providers/notification-sendgrid/jest.config.js
Stevche Radevski 79758c46b6 feat: Add support for sendgrid and logger notification providers (#7290)
* feat: Add support for sendgrid and logger notification providers

* fix: changes based on PR review
2024-05-11 17:40:03 +02:00

17 lines
341 B
JavaScript

module.exports = {
globals: {
"ts-jest": {
tsconfig: "tsconfig.spec.json",
isolatedModules: false,
},
},
transform: {
"^.+\\.[jt]s?$": "ts-jest",
},
testEnvironment: `node`,
moduleNameMapper: {
"^axios$": "axios/dist/node/axios.cjs",
},
moduleFileExtensions: [`js`, `jsx`, `ts`, `tsx`, `json`],
}