canvas: Fixing nodeMoved event handling
[fnpeditor.git] / src / editor / modules / documentCanvas / canvas / canvas.test.js
index ceccda3..2ee505d 100644 (file)
@@ -61,6 +61,7 @@ describe('Handling changes to the document', function() {
 });
 
 describe('Listening to document changes', function() {
+
     it('Handling element node moved', function() {
         var doc = getDocumentFromXML('<section><a></a><b></b></section>'),
             a = doc.root.contents()[0],
@@ -73,6 +74,7 @@ describe('Listening to document changes', function() {
         expect(sectionChildren[0].getWlxmlTag()).to.equal('b');
         expect(sectionChildren[1].getWlxmlTag()).to.equal('a');
     });
+
     it('Handling text node moved', function() {
         var doc = getDocumentFromXML('<section><a></a>Alice</section>'),
             a = doc.root.contents()[0],