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