Manikanta
Manikanta
[check this source code once ...it might helps to resolve this problem](http://adazzle.github.io/react-data-grid/examples.html#/all-features)
you can try this for mocking a div tag with styled-components ``` const mockCreateElement = React.createElement; jest.mock('styled-components', () => { const styledMock = jest.fn(); styledMock.attrs = () => jest.fn(); const...
Solution 2: ``` import { setStyleSheetSerializerOptions } from 'jest-styled-components/serializer'; import 'jest-styled-components'; setStyleSheetSerializerOptions({ addStyles: false, classNameFormatter: () => '', }); ```
@RSSfeed How to navigate multiple scenes within a tab in react native scrollable tab view?