15 lines
508 B
JavaScript
15 lines
508 B
JavaScript
|
|
describe('switch tests', function () {
|
|
|
|
it('Should have MaterialSwitch globally available', function () {
|
|
expect(MaterialSwitch).to.be.a('function');
|
|
});
|
|
|
|
it('Should be upgraded to a MaterialSwitch successfully', function () {
|
|
var el = document.createElement('div');
|
|
el.innerHTML = '<input type="checkbox" class="wsk-switch__input">';
|
|
componentHandler.upgradeElement(el, 'MaterialSwitch');
|
|
expect($(el)).to.have.data('upgraded', ',MaterialSwitch');
|
|
});
|
|
});
|