mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
module("deprecated", { teardown: moduleTeardown });
|
|
|
|
if ( jQuery.fn.size ) {
|
|
test("size()", function() {
|
|
expect(1);
|
|
equal( jQuery("#qunit-fixture p").size(), 6, "Get Number of Elements Found" );
|
|
});
|
|
}
|