From: Ariel Flesler Date: Tue, 1 Jul 2008 02:08:45 +0000 (+0000) Subject: test runner: optimizing a test for speed. X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=28937ded0ebecd0e48138e57322b299cefcef4a7;p=jquery.git test runner: optimizing a test for speed. --- diff --git a/test/unit/core.js b/test/unit/core.js index dbf23e7..71b1246 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1576,14 +1576,17 @@ test("empty()", function() { test("slice()", function() { expect(6); - isSet( jQuery("#ap a").slice(1,2), q("groups"), "slice(1,2)" ); - isSet( jQuery("#ap a").slice(1), q("groups", "anchor1", "mark"), "slice(1)" ); - isSet( jQuery("#ap a").slice(0,3), q("google", "groups", "anchor1"), "slice(0,3)" ); - isSet( jQuery("#ap a").slice(-1), q("mark"), "slice(-1)" ); + + var $links = jQuery("#ap a"); + + isSet( $links.slice(1,2), q("groups"), "slice(1,2)" ); + isSet( $links.slice(1), q("groups", "anchor1", "mark"), "slice(1)" ); + isSet( $links.slice(0,3), q("google", "groups", "anchor1"), "slice(0,3)" ); + isSet( $links.slice(-1), q("mark"), "slice(-1)" ); - isSet( jQuery("#ap a").eq(1), q("groups"), "eq(1)" ); + isSet( $links.eq(1), q("groups"), "eq(1)" ); - isSet( jQuery("#ap a").eq('1'), q("groups"), "eq('1')" ); + isSet( $links.eq('2'), q("anchor1"), "eq('2')" ); }); test("map()", function() {