/Knowledge/sources/honojs__hono/llms-full/app-hono-request--5b485d82511c.md
App - Hono: request() - hono-docs
App Hono: request() Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt request Summary request is a usefu...
App - Hono: request()
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#request
Summary
request is a useful method for testing. You can pass a URL or pathname to send a GET request. app will return a Response object. ```ts twoslash import { Hono } from 'hono' const app = new Hono() declare const test: (name: string, f...
Content
request is a useful method for testing.
You can pass a URL or pathname to send a GET request.
app will return a Response object.
import { Hono } from 'hono'
const app = new Hono()
declare const test: (name: string, fn: () => void) => void
declare const expect: (value: any) => any
// ---cut---
test('GET /hello is ok', async () => {
const res = await app.request('/hello')
expect(res.status).toBe(200)
})
You can also pass a Request object:
import { Hono } from 'hono'
const app = new Hono()
declare const test: (name: string, fn: () => void) => void
declare const expect: (value: any) => any
// ---cut---
test('POST /message is ok', async () => {
const req = new Request('Hello!', {
method: 'POST',
})
const res = await app.request(req)
expect(res.status).toBe(201)
})
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#request",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / App - Hono > request()",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 622,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "App - Hono: request()",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}