1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-03 14:24:23 +01:00
fab-manager/vendor/assets/components/summernote/meteor/test.js
2015-05-13 18:30:35 +02:00

10 lines
243 B
JavaScript

'use strict';
Tinytest.add('Instantiation', function (test) {
var editor = document.createElement('div');
document.body.appendChild(editor);
$(editor).summernote();
test.equal(typeof $(editor).code(), 'string', 'Instantiation');
});