var getDocumentFromXML = function(xml) {
return wlxml.WLXMLDocumentFromXML(xml);
-}
+};
var wait = function(callback, timeout) {
+ /* globals window */
return window.setTimeout(callback, timeout || 0.5);
};
c = canvas.fromXMLDocument(doc);
var header = doc.root.replaceWith({tagName: 'header'});
- expect(c.doc().data('wlxmlNode').sameNode(header)).to.be.true;
+ expect(c.doc().data('wlxmlNode').sameNode(header)).to.equal(true);
});
});
});
describe('Cursor', function() {
-
+ /* globals Node */
var getSelection;
var findTextNode = function(inside, text) {
};
beforeEach(function() {
+ /* globals window */
getSelection = sinon.stub(window, 'getSelection');
});