Files
node-fastify/node_modules/fastify/test/esm/other.mjs
heiye111 c74f28caa7 one
2025-09-20 21:06:53 +08:00

9 lines
189 B
JavaScript

// Imported in both index.test.js & esm.test.mjs
import { strictEqual } from 'node:assert'
async function other (fastify, opts) {
strictEqual(fastify.foo, 'bar')
}
export default other