camunda-modeler
Version:
Camunda Modeler for BPMN, DMN and CMMN, based on bpmn.io
27 lines (18 loc) • 478 B
JavaScript
;
var describeEditor = require('./commons').describeEditor;
var DmnEditor = require('app/editor/dmn-editor');
var initialXML = require('app/tabs/dmn/initial.dmn'),
otherXML = require('./other.dmn');
function createEditor() {
return new DmnEditor({
layout: {
propertiesPanel: {}
}
});
}
describeEditor('DmnEditor', {
createEditor: createEditor,
initialXML: initialXML,
otherXML: otherXML
});
describe('DmnEditor', function() { });