export default { skip_if_ssr: true, // SSR behaviour is awkwardly different get props() { return { foo: 42 }; }, html: '', test({ assert, component, target }) { const textarea = target.querySelector('textarea'); assert.strictEqual(textarea.value, '\t

not actually an element. 42

\n'); component.foo = 43; assert.strictEqual(textarea.value, '\t

not actually an element. 43

\n'); } };