Jasmine 에는 매처 toBe및 toEqual. 다음과 같은 개체가있는 경우 : function Money(amount, currency){ this.amount = amount; this.currency = currency; this.sum = function (money){ return new Money(200, "USD"); } } 비교 new Money(200, "USD")하고 합계의 결과를 시도하면 이러한 내장 매 처가 예상대로 작동하지 않습니다. 사용자 지정 equals메서드 및 사용자 지정 매처를 …