UNPKG

@salla.sa/twilight-components

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