This commit is contained in:
Cory LaViska
2025-10-13 12:07:44 -04:00
committed by GitHub
parent dd1c689e33
commit 52b5f557e0

View File

@@ -26,7 +26,7 @@ describe('<wa-details>', () => {
it('should reflect the name property', async () => {
const el = await fixture<WaDetails>(html`<wa-details></wa-details>`);
el.name = 'test'
el.name = 'test';
await el.updateComplete;
expect(el.getAttribute('name')).to.equal('test');
});