**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
14 lines
256 B
JavaScript
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",
|
|
}
|