decide.nolog.cz/tests/integration/helpers/mark-as-safe-html-test.js

19 lines
541 B
JavaScript
Raw Normal View History

import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Helper | mark-as-safe-html', function (hooks) {
setupRenderingTest(hooks);
// Replace this with your real tests.
test('it renders', async function (assert) {
this.set('inputValue', '1234');
await render(hbs`{{mark-as-safe-html "<p>foo</p>"}}`);
assert.dom('p').exists();
assert.dom('p').hasText('foo');
});
});