Some how chai its not working
promise = doSomething()
expect(promise).to.eventually.equal(obj)
expect(promise).to.eventually.deep.equal(obj)
but in the assertion error I get this
AssertionError: expected {a: "2", b: "3"} to equal {a: "2", b: "3"}
BTW I already try with should
and I get the same result