使用酶测试样式成分

时间:2017-05-31 10:17:19

标签: reactjs enzyme styled-components

我有一个关于使用酶进行测试的问题,所以基本上我正在做的事情看起来像是:

const BaseButton = styled.button`
  padding: 10px;
`;

const PrimaryButton = BaseButton.extend`
  color: red;
`;

const SecondaryButton = BaseButton.extend`
  color: blue;
`;

// My actual component:
const buttonTypes = {
    primary: PrimaryButton,
    secondary: SecondaryButton
};
export const Button = (props: Props) => {
    const { type = 'primary' } = props;
    const Btn = buttonTypes[type] || buttonTypes.primary;

    return (
        <Btn
            {...props}
            onClick={props.onClick}
        >
            {props.children}
        </Btn>
    );
};

我想做一些测试,使用Enzyme在type上传递不同的道具,例如测试应该说:

should render a Primary button if type='primary'

should render a Secondary button if type='secondary'

should render a Primary button if type=''

should render a Primary button by default

我的按钮有更多属性,但为了简单起见,我只是展示了color

关于如何实现这一目标的任何想法?

1 个答案:

答案 0 :(得分:-1)

我最终做的是:

  1. 向按钮添加数据属性
  2. 使用Enzyme
  3. 安装组件
  4. 安装后我使用component.html()将组件作为字符串
  5. 检查是否应用了正确的属性
  6. // Button.js
    const buttons = {
        primary: 'primary',
        secondary: 'secondary'
    };
    
    export const ButtonStyles = styled.button.attrs({
        'data-button-type': props => buttons[props.type] || buttons.primary
    })`
        padding: 10px;
    `;
    
    // Button.tests.js
    
    it('should render a primary button when type prop is missing', () => {
        const wrapper = mount(
            <Button
                {...defaultProps}
                type=""
            />
        );
    
        expect(wrapper.html().includes('data-button-type="primary"')).toBeTruthy();
    });