zoubingwu / msw-auto-mock

A cli tool to generate random mock data from OpenAPI definition for msw.
246 stars 54 forks source link

Make response undefined when status code is 204 #50

Closed ignassew closed 3 days ago

ignassew commented 4 days ago

When the response is null, it will try to actually return null, which will be incorrect for a 204 response. Example: Response constructor: Response body is given with a null body status.

Switching null to undefined seems to resolve the problem.