I am trying to run a test on a component at a certain viewport width. I am doing the following, but this doesn't seem to change it:
test('Component should do something at a certain viewport width.', () => {
global.innerWidth = 2000;
const component = mount(<SomeComponent />);
// ...
});
I also found an article that explains how to do it using JSDom, but as Jest now ships with JSDom, I wondered if there was a native solution.
https://www.codementor.io/pkodmad/dom-testing-react-application-jest-k4ll4f8sd
If you're using TypeScript it will complain that
window.innerWidth
/innerHeight
are read-only. You can get around this by either redeclaring the property:Or using the
Object.assign
method:Both are not extremely nice solutions, but they work.