export default { get props() { return { user: { name: 'alice' } }; }, html: `
hello alice
`, ssrHtml: `hello alice
`, async test({ assert, component, target, window }) { const input = target.querySelector('input'); assert.equal(input.value, 'alice'); const event = new window.Event('input'); input.value = 'bob'; await input.dispatchEvent(event); assert.htmlEqual( target.innerHTML, `hello bob
` ); const user = component.user; user.name = 'carol'; component.user = user; assert.equal(input.value, 'carol'); assert.htmlEqual( target.innerHTML, `hello carol
` ); } };