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 = ''; componentHandler.upgradeElement(el, 'MaterialSwitch'); expect($(el)).to.have.data('upgraded', ',MaterialSwitch'); }); });