discourse/plugins/chat/test/javascripts/components/channel-title-test.gjs
Jarek Radosz 038e5deb2a
DEV: Clean up imports (#28060)
* `@ember/owner` instead of `@ember/application`
* `discourse-i18n` instead of `I18n`
* `{ service } from "@ember/service"` instead of `inject as service`
2024-07-25 15:09:06 +02:00

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();
});
});