UNPKG

185 BJavaScriptView Raw
1'use strict'
2
3const t = require('tap')
4const test = t.test
5const Fastify = require('..')
6
7test('root fastify instance is an object', t => {
8 t.plan(1)
9 t.type(Fastify(), 'object')
10})