mirror of
https://gitee.com/antv/g6.git
synced 2024-11-29 18:28:19 +08:00
fix: fix tree test
This commit is contained in:
parent
ccd2cc6f06
commit
3cde03aa40
@ -11,9 +11,10 @@ describe('tree', () => {
|
||||
nodes: [
|
||||
{
|
||||
id: 'root',
|
||||
depth: 0,
|
||||
children: ['child'],
|
||||
},
|
||||
{ id: 'child' },
|
||||
{ id: 'child', depth: 1 },
|
||||
],
|
||||
edges: [{ source: 'root', target: 'child' }],
|
||||
});
|
||||
@ -30,10 +31,11 @@ describe('tree', () => {
|
||||
{
|
||||
id: 'root',
|
||||
children: ['child'],
|
||||
depth: 0,
|
||||
style: { fill: 'red' },
|
||||
data: { value: 10 },
|
||||
},
|
||||
{ id: 'child', style: { fill: 'green' }, data: { value: 1 } },
|
||||
{ id: 'child', depth: 1, style: { fill: 'green' }, data: { value: 1 } },
|
||||
],
|
||||
edges: [{ source: 'root', target: 'child' }],
|
||||
});
|
||||
@ -59,10 +61,11 @@ describe('tree', () => {
|
||||
{
|
||||
id: 'root',
|
||||
children: ['child'],
|
||||
depth: 0,
|
||||
style: { fill: 'red' },
|
||||
data: { value: 10 },
|
||||
},
|
||||
{ id: 'child', style: { fill: 'green' }, data: { value: 1 } },
|
||||
{ id: 'child', depth: 1, style: { fill: 'green' }, data: { value: 1 } },
|
||||
],
|
||||
edges: [{ source: 'root', target: 'child', data: { weight: 11 } }],
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user