Run and test a single building block of your BPMN diagram.
import TaskTesting from '@camunda/task-testing';
function App() {
...
<TaskTesting api={ ... }>
<TaskTesting.Tab label={ 'Foo' }>...</TaskTesting.Tab>;
<TaskTesting.Link href="https://camunda.com">Foo</TaskTesting.Link>;
</TaskTesting>
}Install the dependencies and spin up a local server at http://localhost:3000:
npm install
npm start
It requires a Camunda 8 instance to run.
We recommend using Camunda 8 Run for development.
You can configure your Camunda 8 environment in the demo/.env file.
Run all tests and build the library:
npm run all
MIT