X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/e5ac28c20d0e89d662c6fcf5da4ecc87f8011211..1d8d7b5fad1547bc2356f2e69e18ca597c969d9b:/modules/documentCanvas/canvas/canvas.test3.js
diff --git a/modules/documentCanvas/canvas/canvas.test3.js b/modules/documentCanvas/canvas/canvas.test3.js
index 76550cd..8af9797 100644
--- a/modules/documentCanvas/canvas/canvas.test3.js
+++ b/modules/documentCanvas/canvas/canvas.test3.js
@@ -117,6 +117,22 @@ describe('Canvas', function() {
})
describe('manipulation api', function() {
+
+
+
+ describe('Basic Element inserting', function() {
+ it('can put new NodeElement at the end', function() {
+ var c = canvas.fromXML(''),
+ appended = c.doc().append({tag: 'header', klass: 'some.class'}),
+ children = c.doc().children();
+
+ expect(children.length).to.equal(1);
+ expect(children[0].sameNode(appended));
+ });
+
+ //it('can')
+ });
+
describe('wrapping', function() {
it('wraps DocumentNodeElement', function() {
var c = canvas.fromXML(''),