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