UNPKG

@exadel/esl

Version:

Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components

13 lines (12 loc) 421 B
import { ESLCarouselRenderer } from '../../core/esl-carousel.renderer'; export class ESLCarouselDummyRenderer extends ESLCarouselRenderer { constructor() { super(...arguments); this.onAnimate = jest.fn(); this.onBeforeAnimate = jest.fn(); this.onAfterAnimate = jest.fn(); this.move = jest.fn(); this.commit = jest.fn(); } } ESLCarouselDummyRenderer.is = 'default';