canvas: Fixing nodeMoved event handling
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Fri, 29 Nov 2013 10:27:19 +0000 (11:27 +0100)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 2 Dec 2013 13:50:54 +0000 (14:50 +0100)
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],