UNPKG

@salla.sa/twilight-components

Version:
22 lines (21 loc) 554 B
/*! * Crafted with ❤ by Salla */ import { newSpecPage } from "@stencil/core/testing"; import { SallaTooltip } from "../salla-tooltip"; describe('salla-tooltip', () => { it('renders', async () => { const page = await newSpecPage({ components: [SallaTooltip], html: `<salla-tooltip></salla-tooltip>`, }); expect(page.root).toEqualHtml(` <salla-tooltip> <mock:shadow-root> <slot></slot> </mock:shadow-root> </salla-tooltip> `); }); }); //# sourceMappingURL=salla-tooltip.spec.js.map