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
380 B
17 lines
380 B
3 years ago
|
'use strict'
|
||
|
|
||
|
const t = require('tap')
|
||
|
const test = t.test
|
||
|
const fp = require('../plugin')
|
||
|
|
||
|
test('anonymous function should be named composite.test0', t => {
|
||
|
t.plan(2)
|
||
|
|
||
|
const fn = fp((fastify, opts, next) => {
|
||
|
next()
|
||
|
})
|
||
|
|
||
|
t.equal(fn[Symbol.for('plugin-meta')].name, 'composite.test-auto-0')
|
||
|
t.equal(fn[Symbol.for('fastify.display-name')], 'composite.test-auto-0')
|
||
|
})
|