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

Version Path
logster-2.1.0 client-app/tests/integration/components/time-formatter-test.js
logster-2.0.1 client-app/tests/integration/components/time-formatter-test.js
logster-2.0.0.pre client-app/tests/integration/components/time-formatter-test.js
logster-1.4.0.pre client-app/tests/integration/components/time-formatter-test.js
logster-1.3.4 client-app/tests/integration/components/time-formatter-test.js
logster-1.3.3 client-app/tests/integration/components/time-formatter-test.js
logster-1.3.2 client-app/tests/integration/components/time-formatter-test.js
logster-1.3.0 client-app/tests/integration/components/time-formatter-test.js
logster-1.3.pre client-app/tests/integration/components/time-formatter-test.js