export default {
get props() {
return {
tree: [
{ id: 1, sub: null },
{ id: 2, sub: [{ id: 11 }] }
]
};
},
html: `
1
`,
test({ assert, component, target }) {
component.tree = [
{ id: 1, sub: null },
{ id: 2, sub: null }
];
assert.htmlEqual(
target.innerHTML,
`
1
2
`
);
}
};