i4way-dash/.svn/pristine/06/0674aa8be3975d78302b2cc03a3...

10 lines
270 B
Plaintext

'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');
});