mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:35:48 +08:00
dc3473fe06
1. `test()` and `render()` instead of `componentTest()` 2. Angle brackets 3. `strictEqual()`/`true()`/`false()` assertions This removes all remaining uses of `componentTest` from core
33 lines
968 B
JavaScript
33 lines
968 B
JavaScript
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import fabricators from "../helpers/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-channel-delete-modal-inner",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("channel title is escaped in instructions correctly", async function (assert) {
|
|
this.set(
|
|
"channel",
|
|
fabricators.chatChannel({
|
|
title: `<script>someeviltitle</script>`,
|
|
})
|
|
);
|
|
|
|
await render(
|
|
hbs`<ChatChannelDeleteModalInner @chatChannel={{this.channel}} />`
|
|
);
|
|
|
|
assert.true(
|
|
query(".chat-channel-delete-modal-instructions").innerHTML.includes(
|
|
"<script>someeviltitle</script>"
|
|
)
|
|
);
|
|
});
|
|
}
|
|
);
|