@salla.sa/twilight-components
Version:
Salla Web Component
18 lines (17 loc) • 552 B
JavaScript
/*!
* Crafted with ❤ by Salla
*/
import { newE2EPage } from "@stencil/core/testing";
describe('salla-product-availability-e2e', () => {
let page;
let element;
beforeEach(async () => {
page = await newE2EPage();
page.setContent(`<salla-product-availability channels='sms,mobile' ></salla-product-availability>`);
element = await page.find('salla-product-availability');
});
it('should render the component', async () => {
expect(element).not.toBeNull();
});
});
//# sourceMappingURL=salla-product-availability.e2e.js.map