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,7 +1,7 @@
import t from 'tap'
import { test } from 'node:test'
import Fastify from '../../fastify.js'
t.test('esm support', async t => {
test('esm support', async t => {
const fastify = Fastify()
fastify.register(import('./plugin.mjs'), { foo: 'bar' })
@@ -9,5 +9,5 @@ t.test('esm support', async t => {
await fastify.ready()
t.equal(fastify.foo, 'bar')
t.assert.strictEqual(fastify.foo, 'bar')
})