@salla.sa/twilight-components
Version:
Salla Web Component
21 lines (20 loc) • 770 B
JavaScript
/*!
* Crafted with ❤ by Salla
*/
import { newE2EPage } from "@stencil/core/testing";
describe('salla-social-share', () => {
it("should be able to render salla-social-share component", async () => {
const page = await newE2EPage();
await page.setContent(`<salla-social-share platforms="whatsapp,facebook,twitter"></salla-social-share>`);
await page.$eval('salla-social-share', comp => {
comp.url = "https://salla.sa/";
comp.urlName = "Salla E-commerce";
});
await page.waitForChanges();
const component = await page.find("salla-social-share");
component.callMethod('open');
const openedClass = await page.find(".opened");
expect(openedClass).toBeTruthy();
});
});
//# sourceMappingURL=salla-social-share.e2e.js.map