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

@@ -2,8 +2,7 @@
const fs = require('node:fs')
const path = require('node:path')
const t = require('tap')
const test = t.test
const { test } = require('node:test')
const fastify = require('../../fastify')()
test('should be the same as package.json', t => {
@@ -11,5 +10,5 @@ test('should be the same as package.json', t => {
const json = JSON.parse(fs.readFileSync(path.join(__dirname, '..', '..', 'package.json')).toString('utf8'))
t.equal(fastify.version, json.version)
t.assert.strictEqual(fastify.version, json.version)
})