mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 00:05:22 +03:00
10 lines
No EOL
270 B
JavaScript
Executable file
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');
|
|
}); |