UNPKG

pino-pretty

Version:
13 lines (9 loc) 245 B
'use strict' const { test } = require('node:test') const noop = require('./noop') test('is a function', t => { t.assert.strictEqual(typeof noop, 'function') }) test('does nothing', t => { t.assert.strictEqual(noop('stuff'), undefined) })