tests.js 270 B

12345678910
  1. 'use strict';
  2. Tinytest.add('Switchery integration', function (test) {
  3. var checkbox = document.createElement('input');
  4. checkbox.className = 'js-switch';
  5. var switchy = new Switchery(checkbox);
  6. test.instanceOf(switchy, Switchery, 'instantiation OK');
  7. });