Sha256: 6bf33352527538dd0e3bb12ed86b713b53b9267e60b3e373d1a6c8d299d7ee15

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 | tabbed-section', 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`{{tabbed-section}}`);

    assert.equal(this.element.textContent.trim(), '');

    // Template block usage:
    await render(hbs`
      {{#tabbed-section}}
        template block text
      {{/tabbed-section}}
    `);

    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/tabbed-section-test.js
logster-2.0.1 client-app/tests/integration/components/tabbed-section-test.js
logster-2.0.0.pre client-app/tests/integration/components/tabbed-section-test.js
logster-1.4.0.pre client-app/tests/integration/components/tabbed-section-test.js
logster-1.3.4 client-app/tests/integration/components/tabbed-section-test.js
logster-1.3.3 client-app/tests/integration/components/tabbed-section-test.js
logster-1.3.2 client-app/tests/integration/components/tabbed-section-test.js
logster-1.3.0 client-app/tests/integration/components/tabbed-section-test.js
logster-1.3.pre client-app/tests/integration/components/tabbed-section-test.js