Sha256: ce32058daab6535ee3bd2886263760f30c5e32b58f91646014d7cdc240855b7d
Contents?: true
Size: 809 Bytes
Versions: 9
Compression:
Stored size: 809 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 | tab-contents', 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`{{tab-contents}}`); assert.equal(this.element.textContent.trim(), ''); // Template block usage: await render(hbs` {{#tab-contents}} template block text {{/tab-contents}} `); assert.equal(this.element.textContent.trim(), 'template block text'); }); });
Version data entries
9 entries across 9 versions & 1 rubygems