酶检查复选框状态

时间:2016-10-19 14:47:07

标签: testing reactjs enzyme

我有以下示例组件

this.props.active = true 

使用Enzyme和chai我想断言,

describe('<Header />', () => {
  it('valid component', () => {
    const wrapper = shallow(<ProfileHeader
    active= {true}
    />);
   ????
});

backgroundColor为绿色,并选中复选框。

这是我的测试用例

 select person_id, person_name, 
        max(case when  ins_id='001' then insurance_type end) as type1,  
        max(case when  ins_id='002' then insurance_type end) as type2, 
        max(case when  ins_id='003' then insurance_type end) as type3  
   from person_table pt 
        join insurance_table it 
          on it.person_id=pt.person_id)
  group by person_id, person_name;

但我怎么能断言这两种情况?

1 个答案:

答案 0 :(得分:12)

检查以下解决方案,了解可以使用css字符串选择器检查的背景颜色(可能需要在选择器中进行一些更改)。 所有以下断言都经过测试和运作。

try to insert an smaller file