chainy/node_modules/traverse/test/obj.js

12 lines
230 B
JavaScript
Raw Permalink Normal View History

2020-01-26 19:03:32 +00:00
var test = require('tape');
var traverse = require('../');
test('traverse an object with nested functions', function (t) {
t.plan(1);
function Cons (x) {
t.equal(x, 10)
};
traverse(new Cons(10));
});