Skip to content

Commit

Permalink
test: update
Browse files Browse the repository at this point in the history
  • Loading branch information
pearone committed Dec 10, 2023
1 parent 51fa765 commit 284a10c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/event/__tests__/dag.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ test('dag', () => {
const dag = new DAG({
nodes: [1, 2, 3, 4, 5],
links: [
{ parent_id: 1, child_id: 2, name: 111 },
{ parent_id: 2, child_id: 3, name: 222 },
{ parent_id: 2, child_id: 4, name: 222 },
{ parent_id: 3, child_id: 1, name: 333 },
{ parent_id: 4, child_id: 5, name: 444 }
// { parent_id: 4, child_id: 6, name: 444 }
{ parent_id: 1, child_id: 2, type: 'link' },
{ parent_id: 2, child_id: 3, type: 'drill' },
{ parent_id: 2, child_id: 4, type: 'filter' },
{ parent_id: 3, child_id: 1, type: 'filter' },
{ parent_id: 4, child_id: 5, type: 'link' },
{ parent_id: 4, child_id: 6, type: 'filter' }
],
link_key: {
start: 'parent_id',
Expand Down

0 comments on commit 284a10c

Please sign in to comment.