Files
medusa-store/integration-tests/plugins/__tests__/workflow-engine/api.ts
Carlos R. L. Rodrigues 0c2a460751 feat(medusa): workflow engine api (#6330)
What:

   Workflow Engine API.
   Endpoints for:
     - List workflow executions
     - Run a workflow
     - Set async steps as success or failure
     - Retrieve the details of a workflow run
2024-02-13 15:19:10 +00:00

10 lines
188 B
TypeScript

import { workflowEngineTestSuite } from "./tests"
jest.setTimeout(5000000)
const env = {
MEDUSA_FF_MEDUSA_V2: false,
}
workflowEngineTestSuite(env, { force_modules_migration: true })