I am trying to test the window functionality via jest. I have a function which appends a query param to the url and redirects the page to the other page. A rough snippet of the code is below:
JavaScript
x
6
1
var url = new URL(targetUrl);
2
if (typeof status !== undefined) {
3
// base encode status
4
url.searchParams.append("status", status);
5
window.location = url.toString();
6
I am new to jest and I am facing a bit of difficulty simulating the mock test for this, hence can you please help me with this. Thanks in advance.
Advertisement
Answer
I figured out a way to mock windows.location. I am attaching a code snippet which will be helpful for others who are trying to mock it.
JavaScript
1
10
10
1
beforeEach(() => {
2
delete window.location;
3
window.location = Object.assign(new URL("https://dickssportinggoods.com"))
4
});
5
6
it('mocks windows.location function', () => {
7
//call your function.
8
expect(global.window.location).toBe("https://yoururl.com/?status=SUCCESS");
9
});
10