1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 00:05:22 +03:00
betaflight-configurator/js/libraries/switchery/meteor/tests.js
2015-10-22 22:27:48 +02:00

10 lines
No EOL
270 B
JavaScript
Executable file

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