mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:33:43 +08:00
9830c40386
This commit also standardize the naming pattern of modals: `<Chat::Modal::FooBar />` and changes css class accordingly. Co-authored-by: David Taylor <david@taylorhq.com>
30 lines
966 B
JavaScript
30 lines
966 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::Modal::ArchiveChannel>",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("channel title is escaped in instructions correctly", async function (assert) {
|
|
this.channel = fabricators.channel({
|
|
title: `<script>someeviltitle</script>`,
|
|
});
|
|
|
|
await render(
|
|
hbs`<Chat::Modal::ArchiveChannel @inline={{true}} @model={{hash channel=this.channel}} />`
|
|
);
|
|
|
|
assert.true(
|
|
query(".chat-modal-archive-channel").innerHTML.includes(
|
|
"<script>someeviltitle</script>"
|
|
)
|
|
);
|
|
});
|
|
}
|
|
);
|