UNPKG
summernote-webpack
Version:
latest (0.8.1)
0.8.1
Super simple WYSIWYG editor
github.com/xuanyan0x7c7/summernote
xuanyan0x7c7/summernote
summernote-webpack
/
meteor
/
test.js
10 lines
(7 loc)
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'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'
); });