How to use styled-components theme with react-native testing-library

672 Views Asked by At

I've got a simple component:

import React, { FunctionComponent } from 'react';
import { ViewStyle, StyleProp, StyleSheet } from 'react-native';

import {
    RoundedCardBackground,
} from './index';

type RoundedCardProps = {
    style?: StyleProp<ViewStyle>;
    shadow?: boolean;
};

const RoundedCard: FunctionComponent<RoundedCardProps> = ({
    style,
    children,
    shadow,
}) => {
    let shadowStyle = shadow ? styles.shadow : undefined;
    return (
        <RoundedCardBackground style={[shadowStyle]}>
            {children}
        </RoundedCardBackground>
    );
};

const styles = StyleSheet.create({
    shadow: {
        elevation: 2,
        shadowColor: '#000000',
        shadowOffset: {
            width: 0,
            height: 3,
        },
        shadowRadius: 10,
        shadowOpacity: 0.05,
    },
});

export default RoundedCard;

and I'm trying to test out a simple functionality but I'm getting an error that's coming from styled-components theme.

Here's my test:

import React from 'react';
import { Text } from '/components/atoms';
import { render } from '/utilities/testUtils';
import theme from '../../themes/primary';

import RoundedCard from './RoundedCard';

describe('RoundedCard', () => {
    it('displays correct children', () => {
        const { queryByText } = render(
            <ThemeProvider theme={theme}>
                <RoundedCard>
                    <Text>Test</Text>
                </RoundedCard>,
            </ThemeProvider>
        );
        expect(queryByText('Test')).not.toBeNull();
    });
});

This is the error I'm getting:

TypeError: Cannot read property 'white' of undefined

      79 | export const RoundedCardBackground = styled.View`
      80 |     flex-shrink: 1;
    > 81 |     background-color: ${(props) => props.theme.colors.white};
         |                                                       ^
      82 |     border-radius: 6px;
      83 |     overflow: hidden;
      84 | `;

Is there something that I'm missing? I thought that wrapping the component in ThemeProvider would do the trick, but still getting the error.

Just for reference, this is the styled-component that's throwing the error

export const RoundedCardBackground = styled.View`
    flex-shrink: 1;
    background-color: ${(props) => props.theme.colors.white};
    border-radius: 6px;
    overflow: hidden;
`;
2

There are 2 best solutions below

0
On BEST ANSWER

The solution to the issue I was having was changing

import { ThemeProvider } from 'styled-components';

to

import { ThemeProvider } from 'styled-components/native';
4
On

I think that Jest (or other test utility) cant find props.theme because theme is undefined. You have to pass theme to your component.

import React from 'react';
import { Text } from '/components/atoms';
import { render } from '/utilities/testUtils';

import RoundedCard from './RoundedCard';

const theme = {
    colors: {
        white: "#fff"
    }
}

describe('RoundedCard', () => {
    it('displays correct children', () => {
        const { queryByText } = render(
            <ThemeProvider theme={theme}>
                <RoundedCard>
                    <Text>Test</Text>
                </RoundedCard>,
            </ThemeProvider>
        );
        expect(queryByText('Test')).not.toBeNull();
    });
});