export default { html: `

`, test({ assert, component, target, window }) { const p = target.querySelector('p'); let styles = window.getComputedStyle(p); assert.equal(styles.color, 'red'); component.myColor = 'pink'; component.width = '100vh'; component.absolute = true; component.bold = false; styles = window.getComputedStyle(p); assert.htmlEqual( target.innerHTML, '

' ); assert.equal(styles.color, 'pink'); assert.equal(styles.width, '100vh'); assert.equal(styles.fontWeight, '100'); assert.equal(styles.position, 'absolute'); } };