Sha256: 65ee27907d8a78e11989af40c5ff89828e53eedda2c083394fa3f96ff52c2ac9
Contents?: true
Size: 805 Bytes
Versions: 9
Compression:
Stored size: 805 Bytes
Contents
import { module, test } from 'qunit'; import { setupRenderingTest } from 'ember-qunit'; import { render } from '@ember/test-helpers'; import hbs from 'htmlbars-inline-precompile'; module('Integration | Component | message-row', function(hooks) { setupRenderingTest(hooks); test('it renders', async function(assert) { // Set any properties with this.set('myProperty', 'value'); // Handle any actions with this.set('myAction', function(val) { ... }); await render(hbs`{{message-row}}`); assert.equal(this.element.textContent.trim(), ''); // Template block usage: await render(hbs` {{#message-row}} template block text {{/message-row}} `); assert.equal(this.element.textContent.trim(), 'template block text'); }); });
Version data entries
9 entries across 9 versions & 1 rubygems