diff options
author | Ariel Flesler <aflesler@gmail.com> | 2008-04-29 20:54:30 +0000 |
---|---|---|
committer | Ariel Flesler <aflesler@gmail.com> | 2008-04-29 20:54:30 +0000 |
commit | f54d277df4a48173c5e53f3223d0e0d86a9bb6ac (patch) | |
tree | 898580d147a3bd276be0fa86fce5dcbfe5f0e889 /test | |
parent | 5ca908d3b637a5d1e5c14b84d9a15653c3cb6d90 (diff) | |
download | jquery-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.js | 4 |
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;
|