discourse/plugins/chat/test/javascripts/components/chat-modal-move-message-to-channel-test.gjs
Jarek Radosz 893fcf714b
DEV: Remove plugin names from test titles (#39418)
Those are now automatically included in testem's output.
2026-04-21 19:19:52 +02:00

34 lines
1.2 KiB
Text
Vendored

import { hash } from "@ember/helper";
import { getOwner } from "@ember/owner";
import { render } from "@ember/test-helpers";
import { module, test } from "qunit";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import MoveMessageToChannel from "discourse/plugins/chat/discourse/components/chat/modal/move-message-to-channel";
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
module("Component | <Chat::Modal::MoveMessageToChannel />", function (hooks) {
setupRenderingTest(hooks);
test("channel title is escaped in instructions correctly", async function (assert) {
this.channel = new ChatFabricators(getOwner(this)).channel({
title: "<script>someeviltitle</script>",
});
this.selectedMessageIds = [this.channel.id];
await render(
<template>
<MoveMessageToChannel
@inline={{true}}
@model={{hash
sourceChannel=this.channel
selectedMessageIds=this.selectedMessageIds
}}
/>
</template>
);
assert
.dom(".chat-modal-move-message-to-channel")
.includesHtml("&lt;script&gt;someeviltitle&lt;/script&gt;");
});
});