UNPKG

@salla.sa/twilight-components

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