Nested content
${tag}>
import { expect, fixture, html, nextFrame, aTimeout } from '@open-wc/testing'; import sinon from 'sinon'; import { overlays } from '../src/overlays.js'; function getGlobalOverlayNodes() { return Array.from(overlays.globalRootNode.children).filter( child => !child.classList.contains('global-overlays__backdrop'), ); } export function runOverlayMixinSuite({ tagString, tag, suffix = '' }) { describe(`OverlayMixin${suffix}`, () => { it('should not be opened by default', async () => { const el = await fixture(html` <${tag}>