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