ds-algo-study
Version:
Just experimenting with publishing a package
28 lines (22 loc) • 672 B
JavaScript
const Node = require('./node');
const levelWidth = require('./index');
test('levelWidth is a function', () => {
expect(typeof levelWidth).toEqual('function');
});
test('levelWidth returns number of nodes at widest point', () => {
const root = new Node(0);
root.add(1);
root.add(2);
root.add(3);
root.children[0].add(4);
root.children[2].add(5);
expect(levelWidth(root)).toEqual([1, 3, 2]);
});
test('levelWidth returns number of nodes at widest point', () => {
const root = new Node(0);
root.add(1);
root.children[0].add(2);
root.children[0].add(3);
root.children[0].children[0].add(4);
expect(levelWidth(root)).toEqual([1, 1, 2, 1]);
});