import { getOwner } from "@ember/owner";
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 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
.dom(".chat-modal-move-message-to-channel")
.includesHtml("<script>someeviltitle</script>");
});
}
);