fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
smartxml: do not clear redo stack when performing nested transformation
[fnpeditor.git]
/
src
/
editor
/
modules
/
documentCanvas
/
canvas
/
canvas.test.js
diff --git
a/src/editor/modules/documentCanvas/canvas/canvas.test.js
b/src/editor/modules/documentCanvas/canvas/canvas.test.js
index
2ee505d
..
3b33751
100644
(file)
--- a/
src/editor/modules/documentCanvas/canvas/canvas.test.js
+++ b/
src/editor/modules/documentCanvas/canvas/canvas.test.js
@@
-19,9
+19,10
@@
var getCanvasFromXML = function(xml) {
var getDocumentFromXML = function(xml) {
return wlxml.WLXMLDocumentFromXML(xml);
var getDocumentFromXML = function(xml) {
return wlxml.WLXMLDocumentFromXML(xml);
-}
+}
;
var wait = function(callback, timeout) {
var wait = function(callback, timeout) {
+ /* globals window */
return window.setTimeout(callback, timeout || 0.5);
};
return window.setTimeout(callback, timeout || 0.5);
};
@@
-56,7
+57,7
@@
describe('Handling changes to the document', function() {
c = canvas.fromXMLDocument(doc);
var header = doc.root.replaceWith({tagName: 'header'});
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)
;
});
});
});
});
@@
-90,7
+91,7
@@
describe('Listening to document changes', function() {
});
describe('Cursor', function() {
});
describe('Cursor', function() {
-
+ /* globals Node */
var getSelection;
var findTextNode = function(inside, text) {
var getSelection;
var findTextNode = function(inside, text) {
@@
-104,6
+105,7
@@
describe('Cursor', function() {
};
beforeEach(function() {
};
beforeEach(function() {
+ /* globals window */
getSelection = sinon.stub(window, 'getSelection');
});
getSelection = sinon.stub(window, 'getSelection');
});