- Version:
- Platform:
- Subsystem:
I think there is an error in the documentation of Node in the part of "Assertion Testing".
assert.notDeepEqual(actual, expected[, message])
Current
assert.notDeepEqual(obj1, obj4);
// OK, obj1 and obj2 are not deeply equal
I think the result must be the next...
assert.notDeepEqual(obj1, obj4);
// OK, obj1 and obj4 are not deeply equal
Thanks!!