import Widget from './Widget.html'; export default { html: '

i am a widget

', test ( assert, component ) { const widget = component.refs.widget; assert.ok( widget instanceof Widget ); } };