mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 20:49:14 +08:00
14 lines
438 B
JavaScript
14 lines
438 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import Carousel from '..';
|
|
|
|
describe('Carousel', () => {
|
|
it('should has innerSlider', () => {
|
|
const wrapper = mount(<Carousel><div /></Carousel>);
|
|
const { innerSlider } = wrapper.node;
|
|
const innerSliderFromRefs = wrapper.node.slick.innerSlider;
|
|
expect(innerSlider).toBe(innerSliderFromRefs);
|
|
expect(typeof innerSlider.slickNext).toBe('function');
|
|
});
|
|
});
|