mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
|
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));
|
||
|
});
|