UNPKG

212 BJavaScriptView Raw
1const micro = jest.genMockFromModule('micro');
2
3module.exports = micro;
4module.exports.json = async (req) => {
5 if (typeof req.body === 'object') {
6 return req.body
7 }
8
9 throw new Error('Invalid JSON');
10};