export default { get props() { return { thePromise: 'not actually a promise' }; }, html: `

the value is not actually a promise

`, test({ assert, component, target }) { component.thePromise = 'still not a promise'; assert.htmlEqual( target.innerHTML, `

the value is still not a promise

` ); } };