Files

10 lines
246 B
JavaScript
Raw Permalink Normal View History

2019-03-03 01:37:45 -05:00
var tape = require("tape");
2019-03-03 01:37:45 -05:00
var noop = require("../../../lib/util/noop");
tape("test noop function", function(t) {
2019-03-03 01:37:45 -05:00
t.equal(typeof noop, "function", "noop is a function");
t.equal(noop(), undefined, "noop() returns nothing");
t.end();
});