Skip to content

Commit

Permalink
test: correct integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Mar 11, 2024
1 parent a42cd75 commit fd430f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/fixtures/json/model/camunda.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
"superClass": [ "InputOutputParameterDefinition" ],
"properties": [
{
"name": "scriptLanguage",
"name": "scriptFormat",
"isAttr": true,
"type": "String"
},
Expand Down
2 changes: 2 additions & 0 deletions test/integration/camunda/read.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ describe('bpmn-moddle - integration', function() {
{ $type: 'camunda:Value', value: '${ \'elValue\' }' },
{
$type: 'camunda:Script',
scriptFormat: 'Groovy',
source: 'return "scriptValue";'
}
]
Expand Down Expand Up @@ -173,6 +174,7 @@ describe('bpmn-moddle - integration', function() {
name: 'var1',
definition: {
$type: 'camunda:Script',
scriptFormat: 'Groovy',
source: 'return 1 + 1;'
}
}
Expand Down

0 comments on commit fd430f1

Please sign in to comment.