export default { data: { thePromise: 'not actually a promise' }, html: `

the value is not actually a promise

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

the value is still not a promise

`); } };