-
Notifications
You must be signed in to change notification settings - Fork 12
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
Add dynamic capability using regex #17
base: master
Are you sure you want to change the base?
Add dynamic capability using regex #17
Conversation
else if (expected === actual) | ||
return true; | ||
else if ((typeof expected === "object" && expected !== null) && (typeof actual === "object" && actual !== null)) { | ||
for (var prop in expected) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should also check that number of attributes to ensure deep equality.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will conflict with what we did in the transformation script, kindly consult with Amir on how/when we should use this deepEqual method and get back to me.
666badf
to
b6d3c7e
Compare
No description provided.