style(tests): use not.to matchers

...in favor of to.not.
This commit is contained in:
Nico Rehwaldt 2018-05-03 16:37:24 +02:00
parent 655e75ed2c
commit 327eb90140
16 changed files with 59 additions and 59 deletions

View File

@ -103,7 +103,7 @@ describe('features - context-pad', function() {
contextPad.open(element);
// then
expect(deleteAction(element)).to.not.exist;
expect(deleteAction(element)).not.to.exist;
})
);
@ -161,7 +161,7 @@ describe('features - context-pad', function() {
contextPad.open(element);
// then
expect(deleteAction(element)).to.not.exist;
expect(deleteAction(element)).not.to.exist;
})
);
@ -493,7 +493,7 @@ describe('features - context-pad', function() {
replaceMenu = domQuery('.bpmn-replace', container);
// then
expect(replaceMenu).to.not.exist;
expect(replaceMenu).not.to.exist;
}
));

View File

@ -123,7 +123,7 @@ describe('features/copy-paste', function() {
return e !== element && is(e, 'bpmn:SubProcess');
});
expect(pastedElements[0].id).to.not.equal(pastedElements[1].id);
expect(pastedElements[0].id).not.to.equal(pastedElements[1].id);
}
));
@ -804,7 +804,7 @@ function expectCollection(collA, collB, contains) {
if (contains) {
expect(collA).to.contain(element);
} else {
expect(collA).to.not.contain(element);
expect(collA).not.to.contain(element);
}
});
}

View File

@ -103,7 +103,7 @@ describe('features/distribute-elements', function() {
// then
expect(rangeGroups).to.have.length(3);
expect(rangeGroups[1].elements).to.not.include(boundaryEvent);
expect(rangeGroups[1].elements).not.to.include(boundaryEvent);
}));

View File

@ -37,7 +37,7 @@ describe('features/modeling - delete participant', function() {
modeling.removeShape(participantShape);
// then
expect(participant.$parent).to.not.be.ok;
expect(participant.$parent).not.to.be.ok;
var newRootShape = canvas.getRootElement(),
newRootBusinessObject = newRootShape.businessObject;
@ -45,11 +45,11 @@ describe('features/modeling - delete participant', function() {
expect(newRootBusinessObject.$instanceOf('bpmn:Process')).to.be.true;
// collaboration DI is unwired
expect(participantDi.$parent).to.not.be.ok;
expect(collaboration.di).to.not.be.ok;
expect(participantDi.$parent).not.to.be.ok;
expect(collaboration.di).not.to.be.ok;
expect(bpmnDefinitions.rootElements).to.not.include(process);
expect(bpmnDefinitions.rootElements).to.not.include(collaboration);
expect(bpmnDefinitions.rootElements).not.to.include(process);
expect(bpmnDefinitions.rootElements).not.to.include(collaboration);
// process DI is wired
expect(diPlane.bpmnElement).to.eql(newRootBusinessObject);

View File

@ -239,7 +239,7 @@ describe('modeling - label layouting', function() {
dragging.end();
// then
expect(getLabelPosition(connection)).to.not.eql(labelPosition);
expect(getLabelPosition(connection)).not.to.eql(labelPosition);
}
));

View File

@ -52,7 +52,7 @@ describe('features/modeling - move', function() {
expect(subProcess.attachers).to.include(boundaryEvent);
expect(boundaryEvent.host).to.eql(subProcess);
expect(label.host).to.not.exist;
expect(label.host).not.to.exist;
}));
@ -82,7 +82,7 @@ describe('features/modeling - move', function() {
expect(subProcess.attachers).to.include(boundaryEvent);
expect(boundaryEvent.host).to.eql(subProcess);
expect(label.host).to.not.exist;
expect(label.host).not.to.exist;
})
);
@ -113,7 +113,7 @@ describe('features/modeling - move', function() {
expect(subProcess.attachers).to.include(boundaryEvent);
expect(boundaryEvent.host).to.eql(subProcess);
expect(label.host).to.not.exist;
expect(label.host).not.to.exist;
}));
@ -146,7 +146,7 @@ describe('features/modeling - move', function() {
expect(subProcess.attachers).to.include(boundaryEvent);
expect(boundaryEvent.host).to.eql(subProcess);
expect(label.host).to.not.exist;
expect(label.host).not.to.exist;
})
);

View File

@ -163,7 +163,7 @@ describe('features/modeling - create participant', function() {
rootShapeDi = rootElement.businessObject.di;
// then
expect(startEventDi.$parent).to.not.be.ok;
expect(startEventDi.$parent).not.to.be.ok;
expect(rootShapeDi.planeElement).not.to.include(startEventDi);
}
));
@ -215,7 +215,7 @@ describe('features/modeling - create participant', function() {
// then
expect(collaborationRoot.children).not.to.include(participantShape);
expect(participant.$parent).to.not.be.ok;
expect(participant.$parent).not.to.be.ok;
expect(collaboration.participants).not.to.include(participant);
}));

View File

@ -53,8 +53,8 @@ describe('modeling/behavior - fix DataInputAssociation#targetRef', function() {
commandStack.undo();
// then
expect(dataInputAssociation.targetRef).to.not.exist;
expect(getTargetRefProp(taskShape)).to.not.exist;
expect(dataInputAssociation.targetRef).not.to.exist;
expect(getTargetRefProp(taskShape)).not.to.exist;
}));
@ -111,7 +111,7 @@ describe('modeling/behavior - fix DataInputAssociation#targetRef', function() {
// then
expect(getTargetRefProp(oldTarget)).not.to.exist;
expect(dataInputAssociation.targetRef).to.not.exist;
expect(dataInputAssociation.targetRef).not.to.exist;
}));

View File

@ -36,7 +36,7 @@ describe('features/modeling - remove element behavior', function() {
// SequenceFlow2 should be deleted
expect(elementRegistry.get(task.id)).to.be.undefined;
expect(sequenceFlow1).to.not.be.undefined;
expect(sequenceFlow1).not.to.be.undefined;
expect(elementRegistry.get('SequenceFlow2')).to.be.undefined;
// source and target have one connection each

View File

@ -67,7 +67,7 @@ describe('features/modeling - remove participant behavior', function() {
modeling.removeShape(participantShape);
// then
expect(participant.$parent).to.not.be.ok;
expect(participant.$parent).not.to.be.ok;
var newRootShape = canvas.getRootElement(),
newRootBusinessObject = newRootShape.businessObject;
@ -75,8 +75,8 @@ describe('features/modeling - remove participant behavior', function() {
expect(newRootBusinessObject.$instanceOf('bpmn:Process')).to.be.true;
// collaboration DI is unwired
expect(participantDi.$parent).to.not.be.ok;
expect(collaboration.di).to.not.be.ok;
expect(participantDi.$parent).not.to.be.ok;
expect(collaboration.di).not.to.be.ok;
expect(bpmnDefinitions.rootElements).not.to.include(process);
expect(bpmnDefinitions.rootElements).not.to.include(collaboration);

View File

@ -179,7 +179,7 @@ describe('features/modeling - move start event behavior', function() {
// then
expect(subProcess.children).to.have.length(2);
expect(newEndEvent.eventDefinitionTypes).to.not.exist;
expect(newEndEvent.eventDefinitionTypes).not.to.exist;
})
);
@ -234,7 +234,7 @@ describe('features/modeling - move start event behavior', function() {
// then
expect(transaction.children).to.have.length(0);
expect(endEventAfter.businessObject.eventDefinitions).to.not.exist;
expect(endEventAfter.businessObject.eventDefinitions).not.to.exist;
})
);
@ -290,7 +290,7 @@ describe('features/modeling - move start event behavior', function() {
var newBoundaryEvent = subProcess.attachers[0].businessObject;
// then
expect(newBoundaryEvent.eventDefinitionTypes).to.not.exist;
expect(newBoundaryEvent.eventDefinitionTypes).not.to.exist;
expect(newBoundaryEvent.attachedToRef).to.equal(subProcess.businessObject);
expect(elementRegistry.get('Transaction_1')).to.eql(subProcess);
})
@ -348,7 +348,7 @@ describe('features/modeling - move start event behavior', function() {
})[0];
// then
expect(movedBoundaryEvent.businessObject.eventDefinitions).to.not.exist;
expect(movedBoundaryEvent.businessObject.eventDefinitions).not.to.exist;
expect(movedBoundaryEvent.businessObject.attachedToRef).to.equal(subProcess.businessObject);
expect(movedBoundaryEvent.parent).to.equal(process);

View File

@ -95,7 +95,7 @@ describe('features/modeling - collapse and expand elements', function() {
// then
expect(is(expandedAdHocSubProcess, 'bpmn:AdHocSubProcess')).to.eql(true);
var businessObject = expandedAdHocSubProcess.businessObject;
expect(businessObject.loopCharacteristics).to.not.be.undefined;
expect(businessObject.loopCharacteristics).not.to.be.undefined;
})
);
@ -381,7 +381,7 @@ describe('features/modeling - collapse and expand elements', function() {
// then
expect(is(collapsedSubProcess, 'bpmn:AdHocSubProcess')).to.eql(true);
var businessObject = collapsedSubProcess.businessObject;
expect(businessObject.loopCharacteristics).to.not.be.undefined;
expect(businessObject.loopCharacteristics).not.to.be.undefined;
})
);

View File

@ -70,7 +70,7 @@ describe('features/modeling - lanes - flowNodeRefs', function() {
commandStack.redo();
// then
expect(sourceLane.flowNodeRef).to.not.contain(task);
expect(sourceLane.flowNodeRef).not.to.contain(task);
}));
});

View File

@ -965,7 +965,7 @@ describe('features/popup-menu - replace menu provider', function() {
defaultFlowEntry = queryEntry(popupMenu, 'replace-with-default-flow');
// then
expect(sequenceFlowEntry).to.not.exist;
expect(sequenceFlowEntry).not.to.exist;
expect(defaultFlowEntry).to.exist;
}));
@ -982,7 +982,7 @@ describe('features/popup-menu - replace menu provider', function() {
// then
expect(sequenceFlowEntry).to.exist;
expect(defaultFlowEntry).to.not.exist;
expect(defaultFlowEntry).not.to.exist;
}));
});
@ -1008,7 +1008,7 @@ describe('features/popup-menu - replace menu provider', function() {
defaultFlowEntry = queryEntry(popupMenu, 'replace-with-default-flow');
// then
expect(sequenceFlowEntry).to.not.exist;
expect(sequenceFlowEntry).not.to.exist;
expect(defaultFlowEntry).to.exist;
}));
@ -1025,7 +1025,7 @@ describe('features/popup-menu - replace menu provider', function() {
// then
expect(sequenceFlowEntry).to.exist;
expect(defaultFlowEntry).to.not.exist;
expect(defaultFlowEntry).not.to.exist;
}));
});
@ -1113,7 +1113,7 @@ describe('features/popup-menu - replace menu provider', function() {
var collapsedSubProcessEntry = queryEntry(popupMenu, 'replace-with-collapsed-subprocess');
// then
expect(collapsedSubProcessEntry).to.not.exist;
expect(collapsedSubProcessEntry).not.to.exist;
}));
});
@ -1189,7 +1189,7 @@ describe('features/popup-menu - replace menu provider', function() {
var task = elementRegistry.get('Task_1ei94kl');
// then
expect(task.businessObject.default).to.not.exist;
expect(task.businessObject.default).not.to.exist;
}));
@ -1243,7 +1243,7 @@ describe('features/popup-menu - replace menu provider', function() {
triggerAction(entries, 'replace-with-conditional-flow');
// then
expect(task.businessObject.default).to.not.exist;
expect(task.businessObject.default).not.to.exist;
}));
@ -1293,7 +1293,7 @@ describe('features/popup-menu - replace menu provider', function() {
commandStack.undo();
// then
expect(gateway.businessObject.default).to.not.exist;
expect(gateway.businessObject.default).not.to.exist;
})
);
@ -1316,7 +1316,7 @@ describe('features/popup-menu - replace menu provider', function() {
var task = elementRegistry.get('Task_1ei94kl');
// then
expect(task.businessObject.default).to.not.exist;
expect(task.businessObject.default).not.to.exist;
})
);
@ -1372,7 +1372,7 @@ describe('features/popup-menu - replace menu provider', function() {
var gateway = elementRegistry.get('ExclusiveGateway_1');
// then
expect(gateway.businessObject.default).to.not.exist;
expect(gateway.businessObject.default).not.to.exist;
})
);
@ -1436,7 +1436,7 @@ describe('features/popup-menu - replace menu provider', function() {
var gateway = elementRegistry.get('ExclusiveGateway_1');
// then
expect(gateway.businessObject.default).to.not.exist;
expect(gateway.businessObject.default).not.to.exist;
})
);
});
@ -1603,7 +1603,7 @@ describe('features/popup-menu - replace menu provider', function() {
// then
expect(exclusiveGateway.businessObject.default).to.equal(sequenceFlow.businessObject);
expect(sequenceFlow.businessObject.conditionExpression).to.not.exist;
expect(sequenceFlow.businessObject.conditionExpression).not.to.exist;
})
);
@ -1630,7 +1630,7 @@ describe('features/popup-menu - replace menu provider', function() {
commandStack.undo();
// then
expect(exclusiveGateway.businessObject.default).to.not.exist;
expect(exclusiveGateway.businessObject.default).not.to.exist;
expect(sequenceFlow.businessObject.conditionExpression).to.equal(conditionExpression);
})
);
@ -1678,7 +1678,7 @@ describe('features/popup-menu - replace menu provider', function() {
commandStack.undo();
// then
expect(sequenceFlow.businessObject.conditionExpression).to.not.exist;
expect(sequenceFlow.businessObject.conditionExpression).not.to.exist;
}
));
@ -1703,7 +1703,7 @@ describe('features/popup-menu - replace menu provider', function() {
triggerAction(entries, 'replace-with-sequence-flow');
// then
expect(sequenceFlow.businessObject.conditionExpression).to.not.exist;
expect(sequenceFlow.businessObject.conditionExpression).not.to.exist;
}));
@ -1728,7 +1728,7 @@ describe('features/popup-menu - replace menu provider', function() {
]);
// then
expect(sequenceFlow.businessObject.conditionExpression).to.not.exist;
expect(sequenceFlow.businessObject.conditionExpression).not.to.exist;
})
);
@ -1788,7 +1788,7 @@ describe('features/popup-menu - replace menu provider', function() {
]);
// then
expect(sequenceFlow.businessObject.conditionExpression).to.not.exist;
expect(sequenceFlow.businessObject.conditionExpression).not.to.exist;
})
);

View File

@ -1380,7 +1380,7 @@ describe('features/replace - bpmn replace', function() {
expect(businessObject.di.fill).to.equal(fill);
expect(businessObject.di.stroke).to.equal(stroke);
expect(newElement.colors).to.not.exist;
expect(newElement.colors).not.to.exist;
}));
});

View File

@ -60,7 +60,7 @@ describe('util/clone/ModelCloneHelper', function() {
var serviceTask = helper.clone(userTask, moddle.create('bpmn:ServiceTask'), []);
expect(getProp(serviceTask, 'camunda:assignee')).to.not.exist;
expect(getProp(serviceTask, 'camunda:assignee')).not.to.exist;
}));
});
@ -83,7 +83,7 @@ describe('util/clone/ModelCloneHelper', function() {
var serviceTaskDocs = getProp(serviceTask, 'bpmn:documentation'),
userTaskDocs = getProp(userTask, 'bpmn:documentation');
expect(userTaskDocs[0]).to.not.equal(serviceTaskDocs[0]);
expect(userTaskDocs[0]).not.to.equal(serviceTaskDocs[0]);
expect(serviceTaskDocs[0].$parent).to.equal(serviceTask);
@ -121,7 +121,7 @@ describe('util/clone/ModelCloneHelper', function() {
var executionListener = serviceTask.extensionElements.values[0];
// then
expect(executionListener).to.not.equal(userTask.extensionElements.values[0]);
expect(executionListener).not.to.equal(userTask.extensionElements.values[0]);
expect(executionListener.$type).to.equal('camunda:ExecutionListener');
expect(executionListener.$type).to.equal('camunda:ExecutionListener');
@ -180,15 +180,15 @@ describe('util/clone/ModelCloneHelper', function() {
var newOutParam = executionListener.outputParameters[0];
var oldOutParam = userTask.extensionElements.values[0].outputParameters[0];
expect(newOutParam).to.not.equal(oldOutParam);
expect(newOutParam).not.to.equal(oldOutParam);
expect(newOutParam.$parent).to.equal(executionListener);
expect(newOutParam.definition).to.not.equal(oldOutParam.definition);
expect(newOutParam.definition).not.to.equal(oldOutParam.definition);
expect(newOutParam.definition.$parent).to.equal(newOutParam);
expect(newOutParam.definition.items[0]).to.not.equal(oldOutParam.definition.items[0]);
expect(newOutParam.definition.items[0]).not.to.equal(oldOutParam.definition.items[0]);
expect(newOutParam.definition.items[0].$parent).to.not.equal(newOutParam.definition.$parent);
expect(newOutParam.definition.items[0].$parent).not.to.equal(newOutParam.definition.$parent);
expect(newOutParam.$type).to.equal('camunda:OutputParameter');
expect(newOutParam.definition.$type).to.equal('camunda:List');
@ -216,7 +216,7 @@ describe('util/clone/ModelCloneHelper', function() {
var extElem = userTask.extensionElements;
// then
expect(extElem).to.not.exist;
expect(extElem).not.to.exist;
}));
});
@ -375,7 +375,7 @@ describe('util/clone/ModelCloneHelper', function() {
var extElems = clonedElement.extensionElements;
// then
expect(extElems).to.not.exist;
expect(extElems).not.to.exist;
}));
});