import { getOwner } from "@ember/application";
import { render } from "@ember/test-helpers";
import hbs from "htmlbars-inline-precompile";
import { module, test } from "qunit";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import { query } from "discourse/tests/helpers/qunit-helpers";
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
module(
"Discourse Chat | Component | ",
function (hooks) {
setupRenderingTest(hooks);
test("channel title is escaped in instructions correctly", async function (assert) {
this.channel = new ChatFabricators(getOwner(this)).channel({
title: "",
});
this.selectedMessageIds = [this.channel.id];
await render(hbs`
`);
assert.true(
query(".chat-modal-move-message-to-channel").innerHTML.includes(
"<script>someeviltitle</script>"
)
);
});
}
);