Sha256: 893e306b7ae258cc704f704f463c38d5f13c2603792b5625aca6c6109ca937e5
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 | update-time', 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`{{update-time}}`); assert.equal(this.element.textContent.trim(), ''); // Template block usage: await render(hbs` {{#update-time}} template block text {{/update-time}} `); assert.equal(this.element.textContent.trim(), 'template block text'); }); });
Version data entries
9 entries across 9 versions & 1 rubygems