### Version 29.5.0 ### Steps to reproduce ```js const x = jest.fn(); const url = new URL('http://localhost:8080/x'); url.searchParams.set('a', '1'); x(url); expect(x).toBeCalledWith(new URL('http://localhost:8080/x?a=1')); ``` ### Expected behavior it doesn't fail with nodejs 19.7.0 ### Actual behavior ```diff @@ -9,6 +9,13 @@ "port": "8080", "protocol": "http:", "search": "?a=1", "username": "", }, + Symbol(query): URLSearchParams { + Symbol(query): Array [ + "a", + "1", + ], + Symbol(context): [Circular], + }, } ``` ### Additional context _No response_ ### Environment ```shell linux ```