Files
medusa-store/packages/medusa-js/jest.config.js
Adrien de Peretti ac866ebb51 test(): Test the create product workflow compensation (#4716)
**What**
Integration tests to validate the workflow compensation.
Also, fix the transaction state when the workflow is compensating and some steps does not have any compensation
2023-08-09 14:33:04 +00:00

14 lines
256 B
JavaScript

module.exports = {
globals: {
"ts-jest": {
tsconfig: "tsconfig.spec.json",
diagnostics: false,
isolatedModules: true,
},
},
transform: {
".(ts|tsx)$": require.resolve("ts-jest/dist/"),
},
testEnvironment: "jsdom",
}