MatchersUtil#contains uses deep equality rather than === for set members

[#169001712]
This commit is contained in:
Steve Gravrock
2021-07-24 14:23:05 -07:00
parent 0170005015
commit c73df57720
5 changed files with 106 additions and 20 deletions

View File

@@ -161,6 +161,10 @@ getJasmineRequireObj().base = function(j$, jasmineGlobal) {
);
};
j$.isIterable_ = function(value) {
return value && !!value[Symbol.iterator];
};
j$.isDataView = function(obj) {
return (
obj !== null &&