File "tests.js"

Full Path: /home/cananyalcin/public_html/vendors/switchery/meteor/tests.js
File size: 270 bytes
MIME-type: text/plain
Charset: utf-8

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