msw에서 status만 응답하도록 하는 코드
200 ok status만 응답하는 코드
rest.patch(
`url`,
(_, res, ctx) => {
return res(ctx.status(200));
},
),
20220209
200 ok status만 응답하는 코드
rest.patch(
`url`,
(_, res, ctx) => {
return res(ctx.status(200));
},
),
20220209
Leave a comment