Aktueller Stand

This commit is contained in:
2026-01-22 19:05:45 +01:00
parent 85dee61a4d
commit e280e4eadb
1967 changed files with 397327 additions and 74093 deletions

View File

@@ -1,13 +1,11 @@
import t from 'tap'
import { test } from 'node:test'
import fp from '../../plugin.js'
t.test('esm base support', async t => {
fp((fastify, opts, next) => {
test('esm base support', (t) => {
fp((_fastify, _opts, next) => {
next()
}, {
fastify: '^3.0.0'
fastify: '^5.0.0'
})
t.end()
t.assert.ok(true, 'fp function called without throwing an error')
})