import { module, test } from 'qunit'; import { setupRenderingTest } from 'ember-qunit'; import { render, findAll } from '@ember/test-helpers'; import hbs from 'htmlbars-inline-precompile'; module('Integration | Component | modal', 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``); assert.equal(this.element.textContent.trim(), '', 'renders without interior content'); assert.equal(findAll('[data-test-modal-close-button]').length, 0, 'does not render close modal button'); // Template block usage: await render(hbs` template block text `); assert.equal(this.element.textContent.trim(), 'template block text', 'renders with interior content'); assert.equal(findAll('[data-test-modal-close-button]').length, 1, 'renders close modal button'); }); });