Tests: Prevent default on anchor click to avoid navigation

This commit is contained in:
Jörn Zaefferer 2015-10-06 14:30:41 +02:00 committed by Alexander Schmitz
parent b58ad12a68
commit e310d9f160

View File

@ -9,7 +9,8 @@ asyncTest( "Anchor recieves click event when spacebar is pressed", function() {
expect( 1 );
var element = $( "#anchor-button" ).button();
element.on( "click", function() {
element.on( "click", function( event ) {
event.preventDefault();
ok( true, "click occcured as a result of spacebar" );
start();
} );