Sha256: be831ce32eca2eb1b4a72ca7872ea9036d7daa4346950ab9ae9eb1e98f164d40

Contents?: true

Size: 809 Bytes

Versions: 7

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 | actions-menu', 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`{{actions-menu}}`);

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

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

    assert.equal(this.element.textContent.trim(), 'template block text');
  });
});

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
logster-2.1.0 client-app/tests/integration/components/actions-menu-test.js
logster-2.0.1 client-app/tests/integration/components/actions-menu-test.js
logster-2.0.0.pre client-app/tests/integration/components/actions-menu-test.js
logster-1.4.0.pre client-app/tests/integration/components/actions-menu-test.js
logster-1.3.4 client-app/tests/integration/components/actions-menu-test.js
logster-1.3.3 client-app/tests/integration/components/actions-menu-test.js
logster-1.3.2 client-app/tests/integration/components/actions-menu-test.js