mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
10 lines
243 B
JavaScript
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');
|
|
});
|