import BpmnModdle from 'bpmn-moddle'; describe('bpmn-moddle', function() { function parse(xml) { var moddle = new BpmnModdle(); return moddle.fromXML(xml, 'bpmn:Definitions'); } describe('browser support', function() { it('should parse simple xml', function(done) { var xml = '' + '' + '' + ''; // when parse(xml).then(function(result) { var definitions = result.rootElement; // then expect(definitions.id).to.equal('simple'); expect(definitions.targetNamespace).to.equal('http://bpmn.io/schema/bpmn'); expect(definitions.rootElements.length).to.equal(1); expect(definitions.rootElements[0].id).to.equal('Process_1'); done(); }).catch(function(err) { done(err); }); }); it('should parse complex xml', function(done) { var xml = require('../../fixtures/bpmn/complex.bpmn'); var start = new Date().getTime(); // when parse(xml).then(function() { // then // parsing a XML document should not take too long expect((new Date().getTime() - start)).to.be.below(1000); done(); }).catch(function(err) { done(err); }); }); }); });