我正在使用jQuery-Jasmine扩展来监视事件,但我无法获得正确的语法。
// Get a button
var $button = $( '#ai1ec_subscribe_users' );
// Call the function
utility_functions.block_all_submit_and_ajax( $button.get(0) );
// check that all submit are disabled
var first_multi = $( '.ai1ec-facebook-refresh-multiselect:first' );
spyOnEvent( '.ai1ec-facebook-refresh-multiselect:first', 'click' );
first_multi.click();
expect( 'click' ).toHaveBeenTriggeredOn( '.ai1ec-facebook-refresh-multiselect:first' );
这让我回来了
在 .ai1ec-facebook-refresh-multiselect:first 上触发了预期的事件点击
但我在检查前点击了它,所以我一定做错了什么。