Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make URLSearchParams iterable #13022 #13077

Closed
wants to merge 8 commits into from
Prev

modify tests to add foreach

  • Loading branch information
yoyo930021 committed Sep 12, 2016
commit cdc5b91ed391f85a87c825364ee9ff665b8d3ec1
@@ -22,6 +22,11 @@
break;
}
});
var found = [];
params.forEach(function(value, index) {
found.push(value);
});
assert_array_equals(found,['1', '2', '3']);
}, "ForEach Check");

test(function(){
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.