You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
355 B
17 lines
355 B
'use strict'
|
|
|
|
const t = require('tap')
|
|
const test = t.test
|
|
const fp = require('./../')
|
|
|
|
test('anonymous function should be named composite.test', t => {
|
|
t.plan(2)
|
|
|
|
const fn = fp((fastify, opts, next) => {
|
|
next()
|
|
})
|
|
|
|
t.is(fn[Symbol.for('plugin-meta')].name, 'composite.test')
|
|
t.is(fn[Symbol.for('fastify.display-name')], 'composite.test')
|
|
})
|