
Description
Issue causing release Tag: '0.26.1'
This line causing the issue
https://github.com/akiran/react-slick/blame/bb11613a3c615da499ed3ca8eafdff029902b8f6/src/inner-slider.js#L294
import React from 'react';
import renderer from 'react-test-renderer';
import Slider from 'react-slick';
describe('Testimonial carousel', () => {
it('renders correctly', () => {
const tree = renderer.create(<Slider />).toJSON();
expect(tree).toBeTruthy();
});
});
Activity
jvitela commentedon Dec 10, 2020
Same problem here with version 0.27.3
Unfortunately versions lower than 0.27.0 are not compatible with React Strict Mode
#1805
alieslamifard commentedon Jan 11, 2021
Same problem with
0.27.13
akiran commentedon Jan 11, 2021
Fixed it in react-slick@0.27.14
gerisztein commentedon Jan 19, 2021
@akiran for me it's quite the opposite, it was working before and 0.27.14 broke it 😢