You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there's only mount(). There might be use cases for:
light() - Only traverses light DOM
shadow() - Current impl of mount(). Uses shadowRoot, but does not descend into descendant components contained in the shadow root (only sees their light DOM).
shadow({ deep: true }) traverses child shadow roots all the way down
Currently there's only
mount(). There might be use cases for:light()- Only traverses light DOMshadow()- Current impl ofmount(). UsesshadowRoot, but does not descend into descendant components contained in the shadow root (only sees their light DOM).shadow({ deep: true })traverses child shadow roots all the way down