Skip to content

Commit

Permalink
test removed
Browse files Browse the repository at this point in the history
  • Loading branch information
abdul99ahad committed Dec 11, 2024
1 parent 8594822 commit bee1318
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions test/spec/zeebe/Mappings.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,42 +337,6 @@ describe('ZeebeVariableResolver - Variable Mappings', function() {
]);
}));


it('should only resolve output mapping if exists', inject(async function(variableResolver, elementRegistry) {

// given
const root = elementRegistry.get('Participant_3');

// when
const variables = await variableResolver.getVariablesForElement(root.businessObject.processRef);

// then
expect(variables).to.variableEqual([
{
name: 'output',
type: 'Context',
info: '',
}
]);
}));

it('should only resolve resultVariable if no output mapping exists', inject(async function(variableResolver, elementRegistry) {

// given
const root = elementRegistry.get('Participant_4');

// when
const variables = await variableResolver.getVariablesForElement(root.businessObject.processRef);

// then
expect(variables).to.variableEqual([
{
name: 'resultVariable',
type: 'Context',
info: '',
}
]);
}));
});


Expand Down

0 comments on commit bee1318

Please sign in to comment.