X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/fe31e3a7385bf539772d927a1dd3d9cc8ef47f0d..8b83f8a0f1562b8365ccc7735a6301eba613d28c:/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 0f01486..67f59b6 100644 --- a/src/editor/modules/documentCanvas/canvas/canvas.test.js +++ b/src/editor/modules/documentCanvas/canvas/canvas.test.js @@ -3,10 +3,9 @@ define([ 'libs/chai', 'libs/sinon', 'modules/documentCanvas/canvas/canvas', -'modules/documentCanvas/canvas/documentElement', 'modules/documentCanvas/canvas/utils', 'wlxml/wlxml' -], function($, chai, sinon, canvas, documentElement, utils, wlxml) { +], function($, chai, sinon, canvas, utils, wlxml) { 'use strict'; /* global describe, it, beforeEach, afterEach */ @@ -191,8 +190,7 @@ describe('Cursor', function() { textFirst = findTextNode(dom, 'Alice'), textSecond = findTextNode(dom, 'has a cat'), textAbc = findTextNode(dom, 'abc'), - textCde = findTextNode(dom, 'cde'), - cursor, label; + textCde = findTextNode(dom, 'cde'); var check = function(label, expected) { var cursor = c.getCursor(); @@ -201,7 +199,7 @@ describe('Cursor', function() { expect(cursor.getSelectionStart().offset).to.equal(expected.start.offset, label + 'start offset ok'); expect(cursor.getSelectionEnd().element.getText()).to.equal(expected.end.text, label + 'end element ok'); expect(cursor.getSelectionEnd().offset).to.equal(expected.end.offset, label + 'end offset ok'); - } + }; getSelection.returns({ anchorNode: textFirst,