UNPKG

@salla.sa/twilight-components

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