import { module, test } from 'qunit'; import { setupRenderingTest } from 'frontend-reactive/tests/helpers'; import { render } from '@ember/test-helpers'; import { hbs } from 'ember-cli-htmlbars'; module('Integration | Component | note/content', function (hooks) { setupRenderingTest(hooks); test('note-content', async function (assert) { // Set any properties with this.set('myProperty', 'value'); // Handle any actions with this.set('myAction', function(val) { ... }); const shortContent = 'Lorem ipsum odor amet, consectetuer adipiscing elit.'; this.set('shortContent', shortContent); await render(hbs``); assert.dom('.note-content-text').hasText(shortContent); }); });