import { expect, fixture, html } from '@open-wc/testing';
import '../lion-select.js';
describe('lion-select', () => {
it('can preselect an option', async () => {
const lionSelect = await fixture(html`
`);
expect(lionSelect.querySelector('select').value).to.equal('nr2');
});
});