import { expect, fixture, nextFrame } from '@open-wc/testing'; import '../lion-radio.js'; describe('', () => { it('should have type = radio', async () => { const el = await fixture(` `); await nextFrame(); expect(el.children[1].inputElement.getAttribute('type')).to.equal('radio'); }); });