UNPKG

pino-pretty

Version:
13 lines (9 loc) 218 B
'use strict' const tap = require('tap') const noop = require('./noop') tap.test('is a function', async t => { t.type(noop, Function) }) tap.test('does nothing', async t => { t.equal(noop('stuff'), undefined) })