Files
fatsify-schema/node_modules/fastify/test/imports.test.js
2025-09-22 16:00:32 +08:00

18 lines
376 B
JavaScript

'use strict'
const { test } = require('node:test')
test('should import as default', t => {
t.plan(2)
const fastify = require('..')
t.assert.ok(fastify)
t.assert.strictEqual(typeof fastify, 'function')
})
test('should import as esm', t => {
t.plan(2)
const { fastify } = require('..')
t.assert.ok(fastify)
t.assert.strictEqual(typeof fastify, 'function')
})