test case on toust meesage in jest code example
Example: jest writing responsive test case
it("should display call link in small screen", () => { window.innerWidth = 700; // < 768px const { getByText } = render( <Contact /> ); expect(getByText("Call")).toBeVisible();});