作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法使用 enzyme 浅方法和样式组件的 ThemeProvider 包装来测试样式组件的文本内容?
class MyComponent extends React.component {
...
render(){
return (
<StyledComponent_A>
<StyledComponent_B>
some text
</StyledComponent_B>
</StyledComponent_A>
);
}
}
test('text is \'some text\'', () => {
const wrapper = shallow(
<ThemeProvider theme={theme}>
<MyComponent />
</ThemeProvider
);
const text = wrapper.dive().find(StyledComponent_B).text();
expect(text).toBe('some text');
});
最佳答案
使用浅层你的text()输出是这样的<styled.section />
因此您需要使用children()来获取样式元素的内容。像这样的事情:
const text = wrapper.find(StyledComponent_B).children().text();
expect(text).toBe('some text');
关于reactjs - 如何使用 Enzymes 浅层和样式组件 ThemeProvider 测试样式组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46853221/
根据 redux 的文档,reducer 总是给出一个新的状态副本。在连接的组件中,react-redux 对 mapStateToProps(旧与新 props)中提到的属性进行浅层比较。 我的困惑
我是一名优秀的程序员,十分优秀!