mirror of https://github.com/ColorlibHQ/gentelella
10 lines
270 B
JavaScript
10 lines
270 B
JavaScript
|
'use strict';
|
||
|
|
||
|
Tinytest.add('Switchery integration', function (test) {
|
||
|
|
||
|
var checkbox = document.createElement('input');
|
||
|
checkbox.className = 'js-switch';
|
||
|
var switchy = new Switchery(checkbox);
|
||
|
|
||
|
test.instanceOf(switchy, Switchery, 'instantiation OK');
|
||
|
});
|