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