mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 11:23:40 +08:00
038e5deb2a
* `@ember/owner` instead of `@ember/application` * `discourse-i18n` instead of `I18n` * `{ service } from "@ember/service"` instead of `inject as service`
27 lines
962 B
Plaintext
27 lines
962 B
Plaintext
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 ChannelTitle from "discourse/plugins/chat/discourse/components/channel-title";
|
|
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
|
|
module("Discourse Chat | Component | <ChannelTitle />", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("icon", async function (assert) {
|
|
const channel = new ChatFabricators(getOwner(this)).channel();
|
|
|
|
await render(<template><ChannelTitle @channel={{channel}} /></template>);
|
|
|
|
assert.dom(".chat-channel-icon").exists();
|
|
});
|
|
|
|
test("label", async function (assert) {
|
|
const channel = new ChatFabricators(getOwner(this)).channel();
|
|
|
|
await render(<template><ChannelTitle @channel={{channel}} /></template>);
|
|
|
|
assert.dom(".chat-channel-name").exists();
|
|
});
|
|
});
|