fastify
Version:
Fast and low overhead web framework, for Node.js
26 lines (20 loc) • 430 B
JavaScript
const t = require('tap')
const test = t.test
const Fastify = require('..')
test('405', t => {
t.plan(1)
const fastify = Fastify()
fastify.get('/', function (req, reply) {
reply.send({ hello: 'world' })
})
const injectOptions = {
method: 'TRACE',
url: '/',
payload: '{}'
}
fastify.inject(injectOptions)
.then(response => {
t.strictEqual(response.statusCode, 405)
})
})