This commit is contained in:
Cory LaViska
2024-10-28 13:55:38 -04:00
parent 80c3d8784b
commit fa716029a7

View File

@@ -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');