it('returns DocumentTextElement instance from Text Node', function() {
var c = canvas.fromXML('<section>Alice</section>'),
it('returns DocumentTextElement instance from Text Node', function() {
var c = canvas.fromXML('<section>Alice</section>'),
- textNode = c.doc().children(0)[0].dom().get(0),
+ aliceElement = c.doc().children()[0],
+ textNode = aliceElement.dom()[0],
expect(element).to.be.instanceOf(documentElement.DocumentTextElement);
expect(element.sameNode(c.doc().children()[0]));
});
expect(element).to.be.instanceOf(documentElement.DocumentTextElement);
expect(element.sameNode(c.doc().children()[0]));
});