Skip to content

Commit

Permalink
Update: Clarify taskTree tests
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Dec 21, 2017
1 parent 83f582a commit 736930d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/taskTree.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ lab.experiment('taskTree()', function() {

var tasks = {
test: {
dep: ['abc', 'def'],
dep: ['dep1', 'dep2'],
},
abc: {
dep: ['def'],
test2: {
dep: ['dep3'],
},
def: {
test3: {
dep: [],
},
};
Expand All @@ -26,14 +26,14 @@ lab.experiment('taskTree()', function() {
nodes: [
{
label: 'test',
nodes: ['abc', 'def'],
nodes: ['dep1', 'dep2'],
},
{
label: 'abc',
nodes: ['def'],
label: 'test2',
nodes: ['dep3'],
},
{
label: 'def',
label: 'test3',
nodes: [],
},
],
Expand Down

0 comments on commit 736930d

Please sign in to comment.