export default { skip_if_ssr: true, // SSR behaviour is awkwardly different props: { foo: 42 }, html: '', test({ assert, component, target }) { const textarea = target.querySelector( 'textarea' ); assert.strictEqual( textarea.value, '\n\t
not actually an element. 42
\n' ); component.foo = 43; assert.strictEqual( textarea.value, '\n\tnot actually an element. 43
\n' ); } };