Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/integration/skeleton/modeling.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
cli.snapshot('initial');

// execute test script
executeTest(cli);
renderer.invoke(executeTest, { cli: cli });

cli.snapshot('final');

Expand Down
4 changes: 3 additions & 1 deletion test/spec/modeling/modeling.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('modeling', function() {

withBpmnJs('>=9')('should model input associations', testExecute('collapsed-subprocess/data-association.js', ensureValidBpmn20));

withBpmnJs('>=9')('should model groups', testExecute('collapsed-subprocess/group.js', ensureValidBpmn20));
withBpmnJs('>=9')('should model task', testExecute('collapsed-subprocess/group.js', ensureValidBpmn20));

});

Expand All @@ -53,6 +53,8 @@ describe('modeling', function() {

it('should remove shape', testExecute('remove/shape.js', ensureValidBpmn20));

it('should remove multiple', testExecute('remove/multiple.js', ensureValidBpmn20));

it('should remove complex', testExecute('remove/complex.js', ensureValidBpmn20));

});
Expand Down
Loading