33 lines
993 B
JavaScript
33 lines
993 B
JavaScript
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
import { query } from "discourse/tests/helpers/qunit-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { render } from "@ember/test-helpers";
|
|
import { module, test } from "qunit";
|
|
|
|
module(
|
|
"Discourse Chat | Component | chat-channel-archive-modal-inner",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("channel title is escaped in instructions correctly", async function (assert) {
|
|
this.set(
|
|
"channel",
|
|
fabricators.channel({
|
|
title: `<script>someeviltitle</script>`,
|
|
})
|
|
);
|
|
|
|
await render(
|
|
hbs`<ChatChannelArchiveModalInner @chatChannel={{this.channel}} />`
|
|
);
|
|
|
|
assert.true(
|
|
query(".chat-channel-archive-modal-instructions").innerHTML.includes(
|
|
"<script>someeviltitle</script>"
|
|
)
|
|
);
|
|
});
|
|
}
|
|
);
|