pretenderjs / pretender

A mock server library with a nice routing DSL
MIT License
1.26k stars 157 forks source link

Handle progress events for FormData request body properly #320

Closed mrijke closed 3 years ago

mrijke commented 3 years ago

Calculate the size of a FormData request properly by looping over all the fields and taking either the size (in case of a File object) or length (in case of a string field). This fixes #303.

xg-wang commented 3 years ago

Thanks!