Skip to content
Permalink
Browse files
Adds unit test to exhibit #10952
  • Loading branch information
jaubourg committed Jan 31, 2012
1 parent 3f88249 commit 6eba066
Showing 1 changed file with 2 additions and 1 deletion.
@@ -39,7 +39,7 @@ jQuery.each( tests, function( flags, resultString ) {

test( "jQuery.Callbacks( \"" + flags + "\" ) - " + filterLabel, function() {

expect( 19 );
expect( 20 );

// Give qunit a little breathing room
stop();
@@ -56,6 +56,7 @@ jQuery.each( tests, function( flags, resultString ) {
});
cblist.fire( "A" );
strictEqual( output, "XA", "Basic binding and firing" );
strictEqual( cblist.fired(), true, ".fired() detects firing" );
output = "X";
cblist.disable();
cblist.add(function( str ) {

0 comments on commit 6eba066

Please sign in to comment.