Skip to content

Instantly share code, notes, and snippets.

@apeckham
Created August 18, 2012 16:29
Show Gist options
  • Save apeckham/3388159 to your computer and use it in GitHub Desktop.
Save apeckham/3388159 to your computer and use it in GitHub Desktop.
jasmine testing that event.preventDefault was called
var event = $.Event('tap');
$fixtures.find('.random').trigger(event);
expect(event.isDefaultPrevented()).toBeTruthy();
@prondzyn
Copy link

Great! That helps me a lot!

@radoslawroszkowiak
Copy link

Great, indeed! Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment