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