From 20034eae866c3f89b00977ad2e32e9eea413203f Mon Sep 17 00:00:00 2001 From: Philipp Fromme Date: Thu, 23 Jan 2025 18:28:07 +0100 Subject: [PATCH] tests: adjust boolean and number template --- .../fixtures/complex.json | 30 ++++++++++++------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/test/spec/cloud-element-templates/fixtures/complex.json b/test/spec/cloud-element-templates/fixtures/complex.json index 4bfc2771..9532fc18 100644 --- a/test/spec/cloud-element-templates/fixtures/complex.json +++ b/test/spec/cloud-element-templates/fixtures/complex.json @@ -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" } } ]