Skip to content

Commit

Permalink
test: update test to use nextRender to fix Lit
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan committed Dec 27, 2024
1 parent 982592b commit 8c9ebbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/select/test/select.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ describe('vaadin-select', () => {
select.readonly = true;
await nextUpdate(select);
select.opened = true;
await nextUpdate(select);
await nextRender(select);
expect(select._overlayElement.opened).to.be.false;
});
});
Expand All @@ -544,7 +544,7 @@ describe('vaadin-select', () => {
select.readonly = true;
await nextUpdate(select);
select.opened = true;
await nextUpdate(select);
await nextRender(select);
expect(select._overlayElement.opened).to.be.false;
});
});
Expand Down

0 comments on commit 8c9ebbe

Please sign in to comment.