测试助手
测试助手提供了一些函数,可以更轻松地测试 Hono 应用程序。
导入
ts
import { Hono } from 'hono'
import { testClient } from 'hono/testing'
testClient()
testClient()
接受一个 Hono 实例作为其第一个参数,并返回一个 Hono Client 对象。 通过使用它,你可以使用编辑器补全来定义你的请求。
ts
import { testClient } from 'hono/testing'
it('test', async () => {
// 测试
const app = new Hono().get('/search', (c) =>
c.json({ hello: 'world' })
)
const res = await testClient(app).search.$get()
expect(await res.json()).toEqual({ hello: 'world' })
})