13 lines
245 B
Plaintext
13 lines
245 B
Plaintext
'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)
|
|
})
|