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 | 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.dom(this.element).hasText('', 'renders without interior content'); assert.dom('[data-test-modal-close-button]').doesNotExist('does not render close modal button'); // Template block usage: await render(hbs` template block text `); assert.dom(this.element).hasText('template block text', 'renders with interior content'); assert.dom('[data-test-modal-close-button]').exists({ count: 1 }, 'renders close modal button'); assert.dom('[data-test-modal-glyph]').doesNotExist('Glyph is not rendered by default'); }); test('it adds the correct type class', async function (assert) { await render(hbs` template block text `); assert.dom('.modal.is-highlight').exists('Modal exists with is-highlight class'); assert.dom('[data-test-modal-glyph]').exists('Glyph is rendered'); }); });