export default { props: { show: false, fields: [1, 2] }, html: `
`, test({ assert, component, target }) { component.show = true; component.fields = [1, 2, 3]; assert.htmlEqual( target.innerHTML, `
1 2 3
` ); component.fields = [1, 2, 3, 4]; assert.htmlEqual( target.innerHTML, `
1 2 3 4
` ); } };