Martin Dixon
Martin Dixon
That's not a valid URL, you need to URL encode your filename e.g. `https://example.portolfio.com/abc/example%20portfolio.png`
Jest VS Code extension has this - if you're thinking of starting this it may be worth looking at their implementation for inspiration: https://github.com/jest-community/vscode-jest
I'm facing a similar issue here. If someone makes a POST request to my app with `Content-Type: multipart/form-data` and a request body containing quotes, e.g.: ``` "formdata":"d" ``` I get...
@icyJoseph Correct. I have added logging to confirm the undici version (using [process.versions](https://nodejs.org/api/process.html#processversions)) and I was on `7.16.0` which should contain that fix. I've had a look at the relevant...
@icyJoseph I've managed to reproduce my issue with an unmodified create-next-app and node 24.8.0. Steps: - `npx [email protected] formdata-repro` - `cd formdata-repo` - `npm run dev` - ` curl --request...