/Knowledge/sources/honojs__hono/llms-full/testing-request-and-response--part-04--133d67c99023.md
Testing: Request and Response (part 04) - hono-docs
Testing: Request and Response (part 04) Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt request and re...
Testing: Request and Response (part 04)
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#request-and-response
Summary
## Content
```ts
test('POST /posts', async () => {
const formData = new FormData()
formData.append('message', 'hello')
const res = await app.request('/posts', {
method: 'POST',
body: formData,
})
expect(res.status).toBe(201)
expect(res.headers.get('X-Custom')).toBe('Thank you')
expect(await res.json()).toEqual({
message: 'Created',
})
})
Metadata
{
"chunk_index": 3,
"citation": "https://hono.dev/llms-full.txt#request-and-response",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Testing > Request and Response (4)",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 98,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Testing: Request and Response (part 04)",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}