mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import { test } from 'tap'
|
|
import Fastify from 'fastify'
|
|
import Support from '../../src/plugins/support'
|
|
|
|
test('support works standalone', async t => {
|
|
const fastify = Fastify()
|
|
void fastify.register(Support)
|
|
await fastify.ready()
|
|
|
|
t.equal(fastify.someSupport(), 'hugs')
|
|
})
|