import type { MockContext } from '../../src/respond.ts' // feature: echo request — try: // curl -X POST localhost:4100/__test/echo -H 'content-type: application/json' -d '{"hi":1}' export default function ({ body, query, headers, method }: MockContext) { return { method, received: body, query, contentType: headers['content-type'] ?? null } }