34 lines
990 B
JavaScript
34 lines
990 B
JavaScript
import componentTest, {
|
|
setupRenderingTest,
|
|
} from "discourse/tests/helpers/component-test";
|
|
import {
|
|
discourseModule,
|
|
queryAll,
|
|
} from "discourse/tests/helpers/qunit-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
|
|
discourseModule("Integration | Component | iframed-html", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
componentTest("appends the html into the iframe", {
|
|
template: hbs`{{iframed-html html="<h1 id='find-me'>hello</h1>" className='this-is-an-iframe'}}`,
|
|
|
|
async test(assert) {
|
|
const iframe = queryAll("iframe.this-is-an-iframe");
|
|
assert.strictEqual(iframe.length, 1, "inserts an iframe");
|
|
|
|
assert.ok(
|
|
iframe[0].classList.contains("this-is-an-iframe"),
|
|
"Adds className to the iframes classList"
|
|
);
|
|
|
|
assert.strictEqual(
|
|
iframe[0].contentWindow.document.body.querySelectorAll("#find-me")
|
|
.length,
|
|
1,
|
|
"inserts the passed in html into the iframe"
|
|
);
|
|
},
|
|
});
|
|
});
|