Skip to content

Instantly share code, notes, and snippets.

@imdongchen
Created April 29, 2021 15:41
Show Gist options
  • Save imdongchen/ce0cc566ca1527880a7c0e8dba10a6c4 to your computer and use it in GitHub Desktop.
Save imdongchen/ce0cc566ca1527880a7c0e8dba10a6c4 to your computer and use it in GitHub Desktop.
import { rest } from 'msw'
rest.post('/', (req, res, ctx) => {
if (!isValid(req.body) {
return res(
ctx.status(400),
ctx.json({ error: Invalid request })
)
}
return res(ctx.status(200))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment