mirror of
https://github.com/discourse/discourse.git
synced 2025-05-29 00:37:44 +08:00
DEV: makes chat modals use the new <DModal /> component (#22495)
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>
This commit is contained in:
@ -0,0 +1,29 @@
|
||||
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>"
|
||||
)
|
||||
);
|
||||
});
|
||||
}
|
||||
);
|
Reference in New Issue
Block a user