문제

I want to test if window.location.assign is being called, and so am trying to use spyOn(window.location, 'assign');, but the method isn't overwriteable.

Are there any other approaches I can use to spy on native methods that can't be overwritten?

도움이 되었습니까?

해결책

What you can do is to create a wrapper of the immutable function in your class:

MyClass.prototype.locationAssign = function () {
    window.location.assign.apply(window.location, arguments);
}

and spy on that method.

spyOn(MyClass, 'locationAssign');
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top