UNPKG

@salla.sa/twilight-components

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