I use Mocha and should as my test frameworks to node js modules. Until now Its works OK ,now I need to assert two object to equal. and I got error (test fail) while the object are the same (I use webStorm 10) and the Diff window show the two object and they Identical (I see also message in the diff window Contents are identical ...)
what It can be and there is a way to overcome this issue?
I try with both which fails
should(inObjBefore).be.exactly({env: outObjAfter});
inObjBefore.should.be.exactly({ env: outObjAfter});