Jasmine has built-in matchers toBe and toEqual. If I have an object like this:
toBe
toEqual
function Money(amount, currency){ this.amount = amou
I found that lodash _.isEqual is good for that
expect(_.isEqual(result, expectedResult)).toBeTruthy()