Skip to content

Commit

Permalink
Disabled one of the ordering tests that was taking a while to run.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Feb 17, 2009
1 parent 10ab08d commit 7b5cfb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/selector.js
@@ -1,7 +1,7 @@
module("selector");

test("element", function() {
expect(18);
expect(17);
reset();

ok( jQuery("*").size() >= 30, "Select all" );
Expand All @@ -25,7 +25,7 @@ test("element", function() {
ok( jQuery("#lengthtest input").length, '<input name="length"> cannot be found under IE, see #945' );

// Check for unique-ness and sort order
isSet( jQuery("*"), jQuery("*, *"), "Check for duplicates: *, *" );
//isSet( jQuery("*"), jQuery("*, *"), "Check for duplicates: *, *" );
isSet( jQuery("p"), jQuery("p, div p"), "Check for duplicates: p, div p" );

t( "Checking sort order", "h2, h1", ["header", "banner", "userAgent"] );
Expand Down

0 comments on commit 7b5cfb7

Please sign in to comment.