UNPKG

@salla.sa/twilight-components

Version:
26 lines (25 loc) 763 B
/*! * Crafted with ❤ by Salla */ import { newSpecPage } from "@stencil/core/testing"; import { SallaListTile } from "../salla-list-tile"; describe('salla-list-tile', () => { it("should build", () => { expect(new SallaListTile()).toBeTruthy(); }); describe('rendering', () => { let page; beforeEach(async () => { page = await newSpecPage({ components: [SallaListTile], html: '<salla-list-tile href="https://salla.sa"></salla-list-tile>' }); }); it('should be able to render component', async () => { await page.waitForChanges(); let component = page.doc.querySelector('salla-list-tile'); expect(component).toBeDefined(); }); }); }); //# sourceMappingURL=salla-list-tile.spec.js.map