酶渲染风格的组件与主题

时间:2017-02-13 09:47:24

标签: reactjs jestjs enzyme styled-components

我正在使用react styled-componentsjest enzyme进行测试。由于来自theme的{​​{1}},我在测试由于styled-components而导致错误的主题组件方面遇到了麻烦。

我的组件是:

const Wrapper = styled.header`
  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;

  width: 100%;
  height: 64px;

  background-color: ${({ theme }) => theme.colors.main.default};
  color: ${({ theme }) => theme.colors.main.text};
`

我的测试是:

it('should render a <header> tag', () => {
  const renderedComponent = shallow(<Wrapper />)
  expect(renderedComponent.type()).toEqual('header')
})

Jest给了我这个错误:

<Wrapper /> › should render a <header> tag

    TypeError: Cannot read property 'main' of undefined

      at Object.<anonymous>._styledComponents2.default.header.theme (app/containers/AppBar/Wrapper.js:13:182)

基本上,它会抛出错误,因为theme未定义,因此无法读取其中的colors属性。如何将主题传递给我的组件?

2 个答案:

答案 0 :(得分:0)

鉴于此......

${({ theme }) => theme.colors.main.default};

......而且这个错误......

TypeError: Cannot read property 'main' of undefined

...在我看来,样式化组件中存在props.theme ,但主题没有colors属性。我会查看主题定义或问题来源ThemeProvider的设置。

答案 1 :(得分:0)

我通过创建一个变通办法助手函数来解决这个问题。我有主题对象,其中包含深色和浅色主题:

    const CHANNEL = '__styled-components__';
    const broadcast = createBroadcast(themes.dark);

    const nodeWithThemeProp = node => {
      return React.cloneElement(node, { [CHANNEL]: broadcast.subscribe });
    };

    export function mountWithTheme(node, { context, childContextTypes } = {}) {
      return mount(
        nodeWithThemeProp(node),
        {
          context: Object.assign({}, context, {[CHANNEL]: broadcast.subscribe}),
          childContextTypes: Object.assign({}, {[CHANNEL]: createBroadcast(themes.dark).publish}, childContextTypes)
        }
      );
    }

现在我可以获得包装器组件的状态和主题:         mountWithTheme(<Component {...props} />)