mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-08 09:05:31 +08:00
This was required in older versions of Ember. But now, bare template tags can access `this.`. This commit was created by upgrading lint-configs, and then running `pnpm lint:js:fix && pnpm lint:prettier:fix` Rule development: https://github.com/discourse/lint-configs/pull/154
25 lines
935 B
Text
25 lines
935 B
Text
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 Header from "discourse/plugins/chat/discourse/components/chat/thread/header";
|
|
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
|
|
module("Discourse Chat | Component | chat-thread-header", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("it safely renders title", async function (assert) {
|
|
const title = "<style>body { background: red;}</style>";
|
|
this.thread = new ChatFabricators(getOwner(this)).thread({ title });
|
|
|
|
await render(
|
|
<template>
|
|
<Header @thread={{this.thread}} @channel={{this.thread.channel}} />
|
|
</template>
|
|
);
|
|
|
|
assert
|
|
.dom(".c-navbar__title")
|
|
.includesHtml("<style>body { background: red;}</style>");
|
|
});
|
|
});
|