mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-02-07 23:53:52 +00:00
* added most of the code needed to generate a bpmn unit test from a process instance w/ burnettk * pyl and tests are passing * renamed some files and some clean up * added api method to generate test case w/ burnettk * debugging the generate test api w/ burnettk * test case generator test case is now passing w/ burnettk * added test for TaskMismatchError w/ burnettk * added support for extension to create bpmn unit tests with the api w/ burnettk * coderabbit and typeguard fixes w/ burnettk --------- Co-authored-by: jasquat <jasquat@users.noreply.github.com>
16 lines
367 B
JSON
16 lines
367 B
JSON
{
|
|
"title": "Text Field",
|
|
"description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')",
|
|
"type": "object",
|
|
"required": [
|
|
"firstName"
|
|
],
|
|
"properties": {
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "Chuck"
|
|
}
|
|
}
|
|
}
|