styles-fixes
Cory LaViska 2024-10-28 13:55:38 -04:00
rodzic 80c3d8784b
commit fa716029a7
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -506,7 +506,9 @@ describe('<sl-select>', () => {
expect(displayInput.value).to.equal('Option 1');
option.textContent = 'updated';
await oneEvent(option, 'slotchange');
await aTimeout(0);
await option.updateComplete;
await el.updateComplete;
expect(displayInput.value).to.equal('updated');