1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00
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');
});