cms/app-client/tests/integration/components/transcript-annotation-component-test.js
import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('transcript-annotation-component', 'Integration | Component | transcript annotation component', {
integration: true
});
test('it renders', function(assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.on('myAction', function(val) { ... });
this.render(hbs`{{transcript-annotation-component}}`);
assert.equal(this.$().text().trim(), '');
// Template block usage:
this.render(hbs`
{{#transcript-annotation-component}}
template block text
{{/transcript-annotation-component}}
`);
assert.equal(this.$().text().trim(), 'template block text');
});