Files
simple-mail-cleaner/backend/node_modules/@fastify/send/test/constructor.test.js
2026-01-22 15:49:12 +01:00

14 lines
301 B
JavaScript

'use strict'
const { test } = require('tap')
const SendStream = require('../index').SendStream
test('constructor', function (t) {
t.plan(1)
t.test('SendStream without new returns SendStream instance', function (t) {
t.plan(1)
t.ok(SendStream({}, '/', {}) instanceof SendStream)
})
})