X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/fadd66e0cc7a22d06a1d8f4ab08871fec8dafcdf..e72654c4d22af93a05a8af98ab58cc44b152c6e7:/src/smartxml/smartxml.test.js?ds=inline diff --git a/src/smartxml/smartxml.test.js b/src/smartxml/smartxml.test.js index 67ada78..ccaf0ef 100644 --- a/src/smartxml/smartxml.test.js +++ b/src/smartxml/smartxml.test.js @@ -313,7 +313,7 @@ describe('smartxml', function() { expect(node.contents()[2].getText()).to.equal(' a cat!'); }); - it('unwrap single node from its parent', function() { + it('unwrap single element node from its parent', function() { var doc = getDocumentFromXML('
'), div = doc.root, a = div.contents()[0], @@ -326,6 +326,19 @@ describe('smartxml', function() { expect(div.contents()[0].sameNode(b)).to.equal(true, 'node got unwrapped'); }); + it('unwrap single text node from its parent', function() { + var doc = getDocumentFromXML('
Some text!
'), + div = doc.root, + span = div.contents()[1], + text = span.contents()[0]; + + var parent = text.unwrap(); + + expect(parent.sameNode(div)).to.equal(true, 'returns new parent'); + expect(div.contents()).to.have.length(1, 'root contains only one node'); + expect(div.contents()[0].getText()).to.equal('Some text!'); + }); + describe('Wrapping text', function() { it('wraps text spanning multiple sibling TextNodes', function() { var section = elementNodeFromXML('
Alice has a small cat
'),