test runner: voided the failing tests for jQuery.map, that belong to an unapproved proposal(#2616).

This commit is contained in:
Ariel Flesler 2008-04-29 20:54:30 +00:00
parent 5ca908d3b6
commit f54d277df4

View file

@ -1511,7 +1511,7 @@ test("slice()", function() {
});
test("map()", function() {
expect(6);
expect(2);//expect(6);
isSet(
$("#ap").map(function(){
@ -1529,6 +1529,8 @@ test("map()", function() {
"Single Map"
);
return;//these haven't been accepted yet
//for #2616
var keys = $.map( {a:1,b:2}, function( v, k ){
return k;