aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAriel Flesler <aflesler@gmail.com>2008-04-29 20:54:30 +0000
committerAriel Flesler <aflesler@gmail.com>2008-04-29 20:54:30 +0000
commitf54d277df4a48173c5e53f3223d0e0d86a9bb6ac (patch)
tree898580d147a3bd276be0fa86fce5dcbfe5f0e889 /test
parent5ca908d3b637a5d1e5c14b84d9a15653c3cb6d90 (diff)
downloadjquery-f54d277df4a48173c5e53f3223d0e0d86a9bb6ac.tar.gz
jquery-f54d277df4a48173c5e53f3223d0e0d86a9bb6ac.zip
test runner: voided the failing tests for jQuery.map, that belong to an unapproved proposal(#2616).
Diffstat (limited to 'test')
-rw-r--r--test/unit/core.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/unit/core.js b/test/unit/core.js
index 90998bb52..053803cd4 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -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;