2022-01-05 09:41:29 +00:00
|
|
|
import makeServiceWorkerEnv from 'service-worker-mock'
|
|
|
|
import { Hono, Middleware } from '../src/hono'
|
2022-01-01 07:22:35 +00:00
|
|
|
|
2022-01-06 22:03:54 +00:00
|
|
|
declare let global: any
|
2022-01-05 09:41:29 +00:00
|
|
|
Object.assign(global, makeServiceWorkerEnv())
|
2022-01-03 22:02:31 +00:00
|
|
|
|
2022-01-01 07:22:35 +00:00
|
|
|
describe('Builtin Middleware', () => {
|
|
|
|
const app = new Hono()
|
|
|
|
|
2022-01-05 09:41:29 +00:00
|
|
|
app.use('*', Middleware.poweredBy())
|
2022-01-03 22:02:31 +00:00
|
|
|
app.get('/', () => new Response('root'))
|
2022-01-01 07:22:35 +00:00
|
|
|
|
|
|
|
it('Builtin Powered By Middleware', async () => {
|
2022-01-06 22:03:54 +00:00
|
|
|
const req = new Request('/')
|
|
|
|
const res = await app.dispatch(req)
|
2022-01-01 07:22:35 +00:00
|
|
|
expect(res).not.toBeNull()
|
|
|
|
expect(res.status).toBe(200)
|
|
|
|
expect(res.headers.get('X-Powered-By')).toBe('Hono')
|
|
|
|
})
|
|
|
|
})
|