Skip to content

Commit

Permalink
tests: adjust boolean and number template
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Jan 24, 2025
1 parent 0586579 commit 20034ea
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions test/spec/cloud-element-templates/fixtures/complex.json
Original file line number Diff line number Diff line change
Expand Up @@ -1626,33 +1626,43 @@
],
"properties": [
{
"label": "Cardholder",
"value": "Jon Doe",
"type": "String",
"label": "Number (optional)",
"value": "=10",
"type": "Number",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "name"
"name": "numberOptional"
}
},
{
"label": "Boolean (optional)",
"value": "=false",
"type": "Boolean",
"feel": "optional",
"binding": {
"type": "zeebe:input",
"name": "booleanOptional"
}
},
{
"label": "Amount",
"label": "Number (static)",
"value": "=10",
"type": "Number",
"feel": "optional",
"feel": "static",
"binding": {
"type": "zeebe:input",
"name": "Amount"
"name": "numberStatic"
}
},
{
"label": "Capture",
"label": "Boolean (static)",
"value": "=false",
"type": "Boolean",
"feel": "optional",
"feel": "static",
"binding": {
"type": "zeebe:input",
"name": "capture"
"name": "booleanStatic"
}
}
]
Expand Down

0 comments on commit 20034ea

Please sign in to comment.