Skip to content
Advertisement

how to spy on window.location functions?

i need to cover my code with some unit tests and in one of then i have the following situation.

app.tsx

JavaScript

and in my test file

JavaScript

i’m getting the followein error : Cannot assign to read only property ‘replace’ of object ‘[object Location]’

i’ve tried other aproachs like

JavaScript

});

but i get different erros for each one of them, is there another way of doing it?

Previously i was using :

JavaScript

and

JavaScript

and in that case the test went OK.

Advertisement

Answer

One way to test it is:

Create a mock function to location.replace:

JavaScript

And spyOn window, replacing location object and setting the replaceMock to replace.

Complete test example:

JavaScript
Advertisement