2

コンポーネントにスパンタグがあり、酵素を使用してクリックする必要があります

    <span className="lock"> 
    <span onClick={[undefined]} id="lock">
    <i className="fa fa-lock" />
    Reserve this chat
    </span>
    </span>

これが私のテストです

it('simulating reservechat click ...',()=>{
const wrapper=shallow(<ReserveChat activeConversation={conversation1} />);
const button=wrapper.find('span').last();
button.simulate('click');
});

クリックするものを見つけるのに混乱しています。通常、いくつかの div クラスまたはその他の検索可能なタグがあります。

4

1 に答える 1