0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 10:51:01 +00:00
hono/test/middleware.test.ts
Yusuke Wada fceed7465a
Support module workers syntax for Cloudflare Workers (#43)
* add fetch method and modify context

* Add example of Durable Objects

* Fixed export/import style

* Update readme

* Fixed script
2022-01-12 09:20:16 +09:00

18 lines
501 B
TypeScript

import { Hono } from '../src/hono'
import { Middleware } from '../src/middleware'
describe('Builtin Middleware', () => {
const app = new Hono()
app.use('*', Middleware.poweredBy())
app.get('/', () => new Response('root'))
it('Builtin Powered By Middleware', async () => {
const req = new Request('http://localhost/')
const res = await app.dispatch(req)
expect(res).not.toBeNull()
expect(res.status).toBe(200)
expect(res.headers.get('X-Powered-By')).toBe('Hono')
})
})