Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dist/list-to-tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ module.exports = class LTT{

constructor(list, options = {}) {
const _list = list.map((item) => item);
_list.map(item=>item.parent=item.parent||0)

options = Object.assign({}, defaultOptions, options);
this.options = options;
Expand Down
80 changes: 80 additions & 0 deletions spec/undefined-root-node-parent-spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
const LTT = require('../dist/list-to-tree');

describe('Root node parent undefined:', function() {

var tree = null;

beforeEach(function() {
var list = [
{
id: 1
}, {
id: 2,
parent: 1
}, {
id: 3,
parent: 1
}, {
id: 4,
parent: 2
}, {
id: 5,
parent: 2
}, {
id: 6
}, {
id: 7
}, {
id: 8,
parent: 7
}, {
id: 9,
parent: 8
}, {
id: 10
}
];
var ltt = new LTT(list);
tree = ltt.GetTree();
});


it('It is workly', function() {
expect( tree.length ).toBe(4);

});

it('First node check id', function() {
var firstNode = tree[0];
expect( firstNode.id ).toBe(1);
});

it('First node check parent', function() {
var firstNode = tree[0];
expect( firstNode.parent ).toBe(0);
});

it('First node check child', function() {
var child = tree[0].child;
expect( child.length ).toBe(2);
});

it('First child - check id', function() {
var child = tree[0].child;
var node = child[0];
expect( node.id ).toBe(2);
});

it('First child - check parent', function() {
var child = tree[0].child;
var node = child[0];
expect( node.parent ).toBe(1);
});

it('Child node have a child key', function() {
var child = tree[0].child;
var node = child[0];
expect( 'child' in node ).toBe(true);
});

});