mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-18 16:16:20 +08:00
27 lines
1,014 B
Text
27 lines
1,014 B
Text
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 DeleteChannel from "discourse/plugins/chat/discourse/components/chat/modal/delete-channel";
|
|
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
|
|
module("Component | <Chat::Modal::DeleteChannel />", 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>`,
|
|
});
|
|
|
|
await render(
|
|
<template>
|
|
<DeleteChannel @inline={{true}} @model={{hash channel=this.channel}} />
|
|
</template>
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-modal-delete-channel__instructions")
|
|
.includesHtml("<script>someeviltitle</script>");
|
|
});
|
|
});
|